git基本用法备忘以及idea,pycharm连接github

更新时间:2023-07-02 01:52:06 阅读: 评论:0

git基本⽤法备忘以及idea,pycharm连接github 1.GIT基本使⽤⽅法备忘(摘⾃廖雪峰)
⼀、⼏个专⽤名词的译名如下
Workspace:⼯作区
Index / Stage:暂存区
学生厌学怎么办
Repository:仓库区(或本地仓库)
Remote:远程仓库
给电脑授权
ssh-keygen -t rsa -b 4096 -C my_email_address
vim /c/Urs/wangyao/.ssh/id_rsa.pub
⼆、新建代码库
在当前⽬录新建⼀个Git代码库
$ git init
新建⼀个⽬录,将其初始化为Git代码库
$ git init [project-name]
下载⼀个项⽬和它的整个代码历史
$ git clone [url]消防工程师好考吗
三、配置
Git的设置⽂件为.gitconfig,它可以在⽤户主⽬录下(全局配置),也可以在项⽬⽬录下(项⽬配置)。
显⽰当前的Git配置
$ git config --list
编辑Git配置⽂件
$ git config -e [--global]
设置提交代码时的⽤户信息
$ git config [--global] ur.name "[name]"
$ git config [--global] ur.email "[email address]"
四、增加/删除⽂件
添加指定⽂件到暂存区
$ git add [file1] [file2] ...
添加指定⽬录到暂存区,包括⼦⽬录
$ git add [dir]
添加当前⽬录的所有⽂件到暂存区
$ git add .
删除⼯作区⽂件,并且将这次删除放⼊暂存区
$ git rm [file1] [file2] ...
停⽌追踪指定⽂件,但该⽂件会保留在⼯作区
$ git rm --cached [file]
改名⽂件,并且将这个改名放⼊暂存区
$ git mv [file-original] [file-renamed]
五、代码提交
提交暂存区到仓库区
$ git commit -m [message]
什么事英文
提交暂存区的指定⽂件到仓库区
$ git commit [file1] [file2] ... -m [message]
提交⼯作区⾃上次commit之后的变化,直接到仓库区
$ git commit -a
提交时显⽰所有diff信息
$ git commit -v
使⽤⼀次新的commit,替代上⼀次提交
如果代码没有任何新变化,则⽤来改写上⼀次commit的提交信息$ git commit --amend -m [message]
重做上⼀次commit,并包括指定⽂件的新变化
$ git commit --amend [file1] [file2] ...
六、分⽀
列出所有本地分⽀
$ git branch
列出所有远程分⽀
$ git branch -r
列出所有本地分⽀和远程分⽀
$ git branch -a
新建⼀个分⽀,但依然停留在当前分⽀
$ git branch [branch-name]
新建⼀个分⽀,并切换到该分⽀
$ git checkout -b [branch]
新建⼀个分⽀,指向指定commit
$ git branch [branch] [commit]
新建⼀个分⽀,与指定的远程分⽀建⽴追踪关系
$ git branch --track [branch] [remote-branch]
切换到指定分⽀,并更新⼯作区
$ git checkout [branch-name]
建⽴追踪关系,在现有分⽀与指定的远程分⽀之间
$ git branch --t-upstream [branch] [remote-branch]
合并指定分⽀到当前分⽀
$ git merge [branch]
选择⼀个commit,合并进当前分⽀
$ git cherry-pick [commit]
删除分⽀
$ git branch -d [branch-name]
删除远程分⽀
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
七、标签
列出所有tag
$ git tag
新建⼀个tag在当前commit
$ git tag [tag]
新建⼀个tag在指定commit
$ git tag [tag] [commit]
查看tag信息
$ git show [tag]
提交指定tag
$ git push [remote] [tag]
提交所有tag
$ git push [remote] --tags
新建⼀个分⽀,指向某个tag
$ git checkout -b [branch] [tag]
⼋、查看信息
显⽰有变更的⽂件
$ git status
显⽰当前分⽀的版本历史
$ git log
显⽰commit历史,以及每次commit发⽣变更的⽂件$ git log --stat
显⽰某个⽂件的版本历史,包括⽂件改名
$ git log --follow [file]小新星总网
$ git whatchanged [file]
显⽰指定⽂件相关的每⼀次diff
cet4真题下载
$ git log -p [file]
显⽰指定⽂件是什么⼈在什么时间修改过
$ git blame [file]
显⽰暂存区和⼯作区的差异
$ git diff
显⽰暂存区和上⼀个commit的差异
holly cow
$ git diff --cached [file]
显⽰⼯作区与当前分⽀最新commit之间的差异
显⽰两次提交之间的差异
$ git diff [first-branch]...[cond-branch]
显⽰某次提交的元数据和内容变化
$ git show [commit]
显⽰某次提交发⽣变化的⽂件
$ git show --name-only [commit]
显⽰某次提交时,某个⽂件的内容
knowledgeba$ git show [commit]:[filename]
显⽰当前分⽀的最近⼏次提交
$ git reflog
九、远程同步
下载远程仓库的所有变动
cayla
$ git fetch [remote]
显⽰所有远程仓库
$ git remote -v
显⽰某个远程仓库的信息
$ git remote show [remote]
增加⼀个新的远程仓库,并命名
$ git remote add [shortname] [url]
取回远程仓库的变化,并与本地分⽀合并
$ git pull [remote] [branch]
上传本地指定分⽀到远程仓库
$ git push [remote] [branch]
强⾏推送当前分⽀到远程仓库,即使有冲突
$ git push [remote] --force
推送所有分⽀到远程仓库
$ git push [remote] --all
删除已指定的远程仓库
git remote rm origin
⼗、撤销
恢复暂存区的指定⽂件到⼯作区
$ git checkout [file]
恢复某个commit的指定⽂件到⼯作区
$ git checkout [commit] [file]
恢复上⼀个commit的所有⽂件到⼯作区
$ git checkout .
重置暂存区的指定⽂件,与上⼀次commit保持⼀致,但⼯作区不变
重置暂存区与⼯作区,与上⼀次commit保持⼀致
$ git ret --hard
重置当前分⽀的指针为指定commit,同时重置暂存区,但⼯作区不变
$ git ret [commit]
重置当前分⽀的HEAD为指定commit,同时重置暂存区和⼯作区,与指定commit⼀致
$ git ret --hard [commit]
重置当前HEAD为指定commit,但保持暂存区和⼯作区不变
$ git ret --keep [commit]
新建⼀个commit,⽤来撤销指定commit
后者的所有变化都将被前者抵消,并且应⽤到当前分⽀
$ git revert [commit]
⼗⼀、其他
⽣成⼀个可供发布的压缩包
$ git archive
⼗⼆、⼀般流程:
cd 到准备放置代码的⽂件夹下
git clone [url] 把代码弄到本地
cd 到clone下的⽂件夹中
git status 查看状态
git log 显⽰当前分⽀的版本历史
修改代码以后
git status 应该能看到 红⾊的modified: XXXX.py 被修改的代码
git add . add所有内容
git status 应该能看到,绿⾊的modified: XXXX.py
git commit -m "修改的内容" ⽤于注释做了什么修改
git push origin master 或者 git push origin develop 正式推上线
rainforest回退
如果不⼩⼼改了⼀些不需要改的地⽅,还未add/commit提交,想要把代码恢复到之前的状态。git checkout . #撤销全部⽂件的修改
git checkout [filename] # 撤销对指定⽂件的修改
使⽤ git ret 回退项⽬版本
可以回退到任意已经提交过的版本。已 add / commit 但未 push 的⽂件也适⽤。
git ret --hard [commit-hashcode]
宝马英文缩写
⼀般⽤法是先⽤ git log 查看具体commit的哈希值,然后 ret 到那个版本。
合并d e v e lop分⽀到m as te r
1.查看本地和远程分⽀
$ git branch -a

本文发布于:2023-07-02 01:52:06,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/164291.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:指定   远程   暂存区   提交
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图