当前位置:   article > 正文

Git 常用操作

Git 常用操作

此篇博客许多内容均零零散散来源于网络,均为在项目代码仓建立时遇到的问题。

这里主要用于记录其中的一些技巧操作。


正常流程:

  1. git clone 指定仓库
  2. 创建自己的,或者修改原本仓库的代码文件
  3. git add .
  4. git commit -m " [ #1 ] 中括号前面填写本次提交对应的 issue, 或者对应的修改简述. 整个双引号中填写整个的修改描述"
  5. git push

常用操作

参考
其余实用操作(持续更新)
  • 回滚本次所有的操作:git checkout .

设置本地 Github 记录密码时间

参考:https://www.cnblogs.com/liujianzuo888/articles/6025793.html

设置记住密码(默认15分钟):

git config --global credential.helper cache
  • 1

设置一个小时:

git config credential.helper 'cache --timeout=3600'
  • 1

长期存储密码:

git config --global credential.helper store
  • 1

如果你正在使用 ssh 而且想体验 https 带来的高速,可以按照下面的步骤操作:
切换到项目目录下 :

cd projectfile/
  • 1

移除远程ssh方式的仓库地址

git remote rm origin
  • 1

增加https远程仓库地址

git remote add origin http://yourname:password@git.oschina.net/name/project.git
  • 1

分支操作

克隆远程分支
git clone -b <branch> <remote_repo>

git clone -b my-branch git@github.com:user/myproject.git
  • 1
  • 2
  • 3

参考:https://stackoverflow.com/questions/1911109/how-do-i-clone-a-specific-git-branch

push 分支
git push origin dbg_lichen_star:dbg_lichen_star

git pull origin develop:develop  
  • 1
  • 2
  • 3

如果是要与本地当前分支merge,则冒号后面的<本地分支名>可以不写。

切换分支

查看远程+本地分支:

git branch -a
  • 1

查看本地分支:

git branch
  • 1

创建新分支:

git checkout -b my_branch origin/my_branch
  • 1

切换分支:

git checkout master
  • 1

git 代理相关设置

git 设置和取消代理:

git config --global https.proxy http://127.0.0.1:1080

git config --global https.proxy https://127.0.0.1:1080

git config --global --unset http.proxy

git config --global --unset https.proxy
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

代码回滚

https://www.jianshu.com/p/f7451177476a

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/594629
推荐阅读
相关标签
  

闽ICP备14008679号