git操作指令

1. 首次用git提交,配置全局选项

$ git config --global user.name "用户名"
$ git config --global user.email "你的邮箱"

2. 提交

$ git init                                // 初始化仓库                  
$ git add .                               // 把本地文件放到暂存区
$ git commit -m ‘提交信息‘                 // 把本地文件放到本地仓库里 并备注提交信息
$ git remote add origin 你新建的仓库地址     // 链接远程仓库
$ git push -u origin master               // 把本地仓库的文件推送到远程仓库 push

3. 删除文件夹

要先clone仓库,复制HTTPS下的地址

$ git clone 你复制的仓库地址        // clone仓库
$ cd 仓库名/                      // 进入仓库(仓库名不需要.git后缀)
$ git pull origin master         // 将远程仓库里面的项目拉下来
$ dir                            // 查看目录
$ git rm -r --cached 待删除文件名  // 删除文件
$ git commit -m ‘delete a file‘  // 提交删除文件后的仓库并添加说明
$ git push -u origin master      // 将本次更新推送到远程仓库

 

git操作指令

上一篇:pcp_attach_node 更新show pool_nodes中节点状态


下一篇:随便写写 (/▽\)