20 个最常用的 Git 命令
常见问题
发布者:cya
2019-12-02 08:38
访问量:199
在这篇文章中,我将介绍在使用 Git 时最常使用的 20 个命令。
以下为译文:
以下是这些Git命令:
用法:git config –global user.name “[name]” 用法:git config –global user.email “[email address]”用法:git init [repository name]用法:git commit -m “[ Type in the commit message]” 该命令将提交git add命令添加的所有文件,并提交git add命令之后更改的所有文件。 该命令可以显示添加到stage的文件与当前最新版本之间的差异。用法:git diff [first branch] [second branch]该命令将从stage中撤出指定的文件,但可以保留文件的内容。该命令可以撤销指定提交之后的所有提交,并在本地保留变更。用法:git reset –hard [commit]该命令将删除工作目录中的文件,并将删除动作添加到stage。该命令可用于显示某个文件的版本历史记录,包括文件的重命名。用法:git branch [branch name]用法:git branch -d [branch name]用法:git checkout [branch name]用法:git checkout -b [branch name] 用法:git merge [branch name]用法:git remote add [variable name] [Remote Server Link]用法:git push [variable name] master用法:git push [variable name] [branch]用法:git push –all [variable name]用法:git push [variable name] :[branch name]用法:git pull [Repository Link]该命令将获取远程服务器上的变更,并合并到你的工作目录。https://dzone.com/articles/top-20-git-commands-with-examples
关键字:
http://m.chenzhankj.com/cjwt/627.html