标签:提示 col 命令 功能 commit ref _id git命令 war
用于全局设置,表示你这台机器上所有的Git仓库都会使用这个配置
初始化当前目录为可以被git管理的仓库
查看当前状态
将文件添加到暂存区
将暂存区的文件提交,并带上提交信息。
git clone https://github.com/username/repo-name.git
把远程仓库项目克隆岛本地。username:登录GitHub的用户名;repo-name:要clone的仓库名。
git rm ‘*.txt‘
git commit -m "remove之后要提交"
确定删除某个文件,上面二个步骤一起
git pull
抓取远程分支别人的新提交,将远程分支与本地分支合并。
若git pull 提示“no tracking information ”则用命令:
git branch --set-upstream branch-name origin/branch-name
标签:提示 col 命令 功能 commit ref _id git命令 war
原文地址:http://www.cnblogs.com/0427mybirthday/p/7491488.html