常用命令
git commit
git commit -am '任意字符串'
- 推送改动的文件到自己的仓库(假设我的仓库名字是
test
)
git push origin test
- 拉取远程仓库(假设远程仓库存在且名字是
master
)
git pull origin master
git checkout -- a.txt
仓库相关命令
git branch test
- 创建仓库后切换到新仓库(新建的仓库名称是
test
)
git checkout -b test
git branch
git branch -D test
git branch -a
git push origin :test
git fetch --prune
git push -f origin test
将远程仓库代码拉取到本地管理
- 创建文件夹
mkdir test
- 进入文件夹
cd test
- 初始化git
git init
- 添加远程仓库
git remote add origin 远程仓库链接地址
- 拉取远程仓库到本地(假设远程仓库名称是
master
)
git pull origin master
- 删除远程仓库地址(不想要远程仓库时使用)
git remote rm origin
不常用的命令
git config --global credential.helper store
git rm -r --cached test
git blame test
git reset --hard HEAD~1
git log
git checkout 77e3873
git config --global core.autocrlf false