码迷,mamicode.com
首页 > 其他好文 > 详细

Git Bash常用命令

时间:2020-01-12 09:25:30      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:mit   文件名   git clone   密码   路径   hub   方法   本地仓库   lob   

克隆远程代码到本地: 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 "you@example.com"

查看状态信息:git status

技术图片

切换分支:

添加文件到缓存区: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

Git Bash常用命令

标签:mit   文件名   git clone   密码   路径   hub   方法   本地仓库   lob   

原文地址:https://www.cnblogs.com/hai-feng/p/12181613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!