Git Bash常用命令

克隆远程代码到本地: git clone 网址

pull代码到本地:

提交到本地仓库:git commit -m "提示信息"

提交本地代码到托管仓库:git push origin master

提交本地代码到分支:git push origin 分支

添加用户名:git config --global user.name "Your Name"

添加邮箱:git config --global user.email ""

查看状态信息:git status

Git Bash常用命令

切换分支:

添加文件到缓存区:git add 文件名(或文件夹名)

push时记住账号密码:

文件默认路径为C:\Users\admin\.gitconfig

添加内容[credential] helper = store

参考:

使用git bash提交代码到github托管 https://www.cnblogs.com/tuanz/p/11204933.html

gitbash的使用方法 https://www.cnblogs.com/geili/p/11261726.html

Git Bash使用详细教程 https://www.cnblogs.com/ccw869476711/p/10818131.html

相关推荐