git 常用命令
Posted jimaww
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用命令相关的知识,希望对你有一定的参考价值。
常用命令:
1:[email protected] MINGW64 ~/redition/rendition (feature/June_09_2017/floatLeftMenu)
$ git add WebApps/rendition/eppublic/akpublic/documents/views/shareTabPane.html
2:[email protected] MINGW64 ~/redition/rendition (feature/June_09_2017/floatLeftMenu)
$ git commit -m "change left float menu base on shilei‘s code"
3:[email protected] MINGW64 ~/redition/rendition (feature/June_09_2017/floatLeftMenu)
$ git push origin feature/June_09_2017/floatLeftMenu
Jira新建一个分支并拉到本地
[email protected] MINGW32 ~/redition/rendition (release/June_09_2017)
$ git checkout bugfix/June_09_2017/C163778-10322-print-tab-doesn-t-show-well
远端没有此分支,push:
[email protected] MINGW32 ~/redition/rendition (jim_change_9534_9724)
本地有没有新分支均可,直接push到远端,并在远端新建一个分支:
$ git push origin jim_change_9534_9724:feature/June_09_2017/jim_change_9534_9724
本地必须有新分支,远端没有新分支,直接push到远端:
$ git push origin HEAD
Push不上去,先去主分支git pull更新下然后再在要push的分支merge下主分支
[email protected] MINGW32 ~/redition/rendition (bugfix/June_09_2017/C163778-9737-cv-app-android-top-menu-is-not)
$ git merge release/June_09_2017
察看所有分支
git branch -a
察看所有代码
gitk --all&
创建本地分支
git branch 分支名
新建一个分支并同时切换到那个分支上
$ git checkout -b
察看改动:
[email protected] MINGW32 ~/redition/rendition (feature/June_09_2017/C163544-9185-rendition-re-design-price-chart)
$ gitk --all&
[email protected] MINGW32 ~/rendition (release/Aug_10_2018)
$ git diff --cached 已经add了的文件的改动
$ git diff 没有add了的文件的改动
[email protected] MINGW32 ~/rendition (release/Aug_10_2018)
$ git reset 取消add
以上是关于git 常用命令的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段