git命令大全

Posted shiyun32

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git命令大全相关的知识,希望对你有一定的参考价值。

1. 常用命令

git remote:要查看当前配置有哪些远程仓库;

git remote -v: -v 参数,你还可以看到每个别名的实际链接地址;

git branch -a :查看远程分支
git branch :查看本地分支

 

git push [alias] [branch]:将你的 [branch] 分支推送成为 [alias] 远程仓库上的 [branch] 分支,eg:git push origin master;

git pull:更新代码

 

cat readme.md:查看readme.md文件的内容,这是Linux里面的命令;

vim readme.md:vim打开readme.md文件,可以编辑;

touch test.txt:创建test.txt文件;

git fetch [alias]:从远程仓库下载新分支与数据(提取远程仓库的更新),该命令执行完后需要执行git merge 远程分支到你所在的分支, git fetch origin;

git merge [alias]/[branch]:从远端仓库提取数据并尝试合并到当前分支,具体用法参考[提取远程仓库], eg: git merge origin/master;

 

git config --system --unset credential.helper 重新输入账号密码
git config --global gui.encoding utf-8 设置编码
gitk
git branch test: 创建本地分支
git checkout -b feature/bugfix origin/feature/bugfix :切换分支
git config credential.helper store(保存密码)
git remote -v: 查看当前的远程库地址

 

参考网址:

http://www.runoob.com/git/git-remote-repo.html








以上是关于git命令大全的主要内容,如果未能解决你的问题,请参考以下文章

Git命令大全

Git命令大全

Git 使用技巧大全

Git命令大全

Git命令大全

Git命令大全