Git的简单命令

    现在代码库是一个非常重要的位置,代码的管理是需要重视的。现在国内外都有很多的代码管理平台,可以将个人的代码上传至如GitHub、GitLab、Gitee等众多平台。

git init //初始化仓库

git add * //仓库添加文件

git rm -rf xxx //移除某文件

git commit -m "first commit" //仓库提交

git remote add origin https://github.com/LeChaPatteImpitoyable/book-management-system.git //连接远程仓库

git push -u origin master //提交代码至远程仓库

git branch //查看分支

git checkout xxx //切换到某分支

git branch -d xxx //删除某分支

git merge //合并分支

git remote -v //查看当前的仓库路径

你可能感兴趣的:(Git的简单命令)