从本质上讲,git可以记录文本的变化,但其定义是一个版本控制系统。你有可能已经以这种或那种方式使用了git:由于它的分布式性质,它是代码版本控制的事实标准,与集中式的apache subversion(svn)相对。
要检查是否安装了git,在终端运行:
$ git versiongit version 2.27.0.rc1.windows.1
如果没有安装,请按照 /d/file/titlepic/downloads 上的说明。mac用户可以用brew来安装它:brew install git。
我们只需要配置一些东西
git config --global ur.name "前端小智" && # 你的名字git config --global ur.email johndoe@example.com && # 你的邮箱git config --global init.defaultbranch main # 默认分支名称,与github兼容
可以用下面命令查看当前的全局配置
git config --global --list# type ":q" to clo
git在纯文本中存储配置,如果你想直接修改,可以直接在~/.gitconfig或~/.config/git/config中编辑全局配置。
正如命令所建议的那样,去掉–global会使这些命令的适用范围扩大到当前文件夹。但要测试这一点,我们需要一个存储库。
存储库只是一个文件夹,里面有我们想跟踪的所有东西。通过命令创建:
mkdir gitexample && cd gitexample && git init# gitexample git:(main)
这个命令在gitexample文件夹内创建了一个.git文件夹。这个隐藏的.git文件夹就是版本库:所有的本地配置和修改都存储在这里。
在存储库中创建一些东西:
echo "hello, git " >> hello.txt
运行git status,我们会看到新创建的未被追踪的文件。
git status# on branch main# # no commits yet# # untracked files:# (u "git add <file>..." to include in what will be committed)# hello.txt## nothing added to commit but untracked files prent (u "git add" to track)
根据提示建议,我们添加文件:
git add .
如果我们不想要所有文件提添加可以使用
git add hello.txt
如果你现在检查版本库的状态,你会看到文件已经被添加了(又称s元宵节的作文taged),但还没有提交。
git status# on branch main# # no commits yet# # changes to be committed:# (u "git rm --cached <file>..." to unstage)# new file: hello.txt
为了记录这些变化,我们来提交它。
git commit -m "add hello.txt"# [main (root-commit) a07ee27] adds hello.txt# 1 file changed, 2 inrtions(+)# create mode 100644 hello.txt
git commit -m <message> 是一个简短的命令,你可以用git commit打开编辑器(主要是vim),提供详细的提交描述。
检查提交记录:
git log# author: qq449245884 <44924566884@qq.com># date: sat jul 17 14:57:24 2021 +0800## add hello.txt#
在很多情况下,拥有一个独立的初始代码版本是很有用的:例如,在测试你不确定的功能时,或者在一起工作时避免代码冲突。这正是git分支的意义所在:它从历史上的一个特定点开始生长。
要创建分支,运行git branch name,要切换分支,运行git checkout name。或者简单地
git checkout -b dev # 切换到一个名为“dev”的新分支# switched to a new branch 'dev'# gitexample git:(dev)
我们在hello.txt文件中更改一些内容并提交更改:
echo "\nhello, git branch" >> hello.txt &a大专mp;&git commit -am "change hello.txt"
现在,切换到主分支:
git checkout main &&cat hello.txt# switched to branch 'main'# hello, git
正如你所看到的,文件内容仍然和原来一样。为了比较分支,我们可以运行。
git diff dev# sweater是什么意思diff --git a/hello.txt b/hello.txt# index 360c923..b7aec52 100644# --- a/hello.txt# +++ b/hello.txt太完美 歌词# @@ -1,3 +1 @@# hello, git# -# -hello, git branch# (end)# type ":q" to clo
我们在主分支中进行更改:
echo "\nhi from main branch" >> hello.txt &&git commit -am "change hello.txt from main"# [main 9b60c4b] change hello.txt from main# 1 file changed, 2 inrtions(+)
现在让我们试着把这些变化合并起来。
git merge dev# auto-merging hello.txt# conflict (content): merge conflict in hello.txt# automatic merge failed; fix conflicts and then commit the result.
因为文件在同一个地方被修改了两次,我们就产生了冲突。看看这个文件
cat hello.txt<<<<<<< headhello, githi from ma金莎爱的魔法歌词in branch=======hello, git>>>>>>> dev
还有一个命令可以单独查看更改:
git diff --ours # :q to clo git diff --theirs #:q to clo
你可以手动编辑文件并提交修改,但我们设想一下,我们只想要其中一个版本。我们就从中止合并开始。
git merge --abort
并以 “theirs”策略重新启动合并,这意味着在发生冲突时,我们将使用传入的分支所坚持的东西。
git merge -x theirs dev# auto-merging hello.txt# merge made by the 'recursive' strategy.# hello.txt | 5 +----# 1 file changed, 1 inrtion(+), 4 deletions(-)
与此策略相反的是 “ours”。将这两个改动合并在一起,需要手动编辑(或使用git mergetool)。
查看所有分支运行的列表
git branch # type :q to clo# dev# * main
最后,删除分支运行:
git branch -d dev# deleted branch dev (was 6259828).
分支从 git 历史中的某一点开始 “生长(grow)”,reba 允许改变这个点。我们再创建一个分支,并在hello.txt上添加一些改动。
git checkout -b story &&echo "once upon a time there was a file">>story.txt &&git add story.txt &&git commit -m "add story.txt"# switched to a new branch 'story'# [story eb996b8] add story.txt# 1 file changed, 1 inrtion(+)# create mode 100644 story.txt
现在,我们回到主分支并添加更改:
git checkout main &&echo "other changes" >> changes.txt &&git add changes.txt &&git commit -m "add changes.txt"
重置我们在main到story分支所做的更改:
git checkout story &&git reba main# successfully rebad and updated refs/heads/story.
可以看到在主分支创建的新文件被添加到story 分支。
ls# changes.txt hello.txt story.txt
注意:不要reba 别人可能使用过的分支,例如主分支。另外,请记住,在远程版本库上进行的每一次历史操作都需要强制这些修改生效。
如果你还没有,请创建一个github账户,登录并创建一个新的空仓库(私有或公共)。
假设版本库的名字是 “example”,运行以下命令(改成你的用户名)。
git remote add origin git@github.com:urname/example.git &&git push -u origin main
你可以刷新页面,看到主分支的文件。要把所有本地分支推送到远程仓库,请运行。
git push --all origin
我们在github上编辑一些东西:只要点击任何文件和铅笔图标。添加一行你想要的任何文字,然后按 “提交修改”。
在本地运行这个命令,以获得远程的变化。
git checkout main &&git pull
如果你想保存你的本地修改以便以后使用,你可以使用git stash。
echo "changes" >> hello.txt &&git stash
现在你可以使用以下命令来检查、应用或放弃这些变化。
git stash list# stash@{0}: wip on main: 92354c8 update changes.txtgit stash pop # 应用更改git stash drop # 撤销修改
你可以使用 stash 编号,即git stash pop 0来应用一个特定的储藏库,或者git stash drop 0来撤销。
如果你想放弃所有的本地修改,只需恢复版本库到最后提交的修改,请运行。
git restore .
一旦你创建了一个提交,这个变化就会保存在本地的git历史中。如前所述,所有影响远程历史的修改都需要git push –force。以下所有命令都要记住这一点。
我们从编辑最后的提交信息开始。
git commit --amend # type :wq to save and clo# press "i" to edit, "esc" to stop editing
我们把一切重设到最开始怎么样?
要找到第一次提交的id,请运行这个命令并滚动(向下箭头)到最后。
git log --abbrev-commit# commit a07ee27# author: your name <your@email.address>date: sun jul 11 11:47:16 2021 +0200 adds hello.txt(end)# type ":q" to clo
现在运行这个来重置版本库,但保持所有的修改不被缓存。
git ret --soft commit # e.g. a07ee27
与之相反,你也可以进行硬重置,用git ret –hard commit来删除所有修改。还有几种其他的重置方式,你可以从git文档中了解到。
大多数时候,你只需要使用少数几个命令(主要是checkout、add、commit、pull、push和merge),但有些命令可能是你想要“以防万一”的。
存储这些信息的一种方法是git alias。要配置一个别名,只需在配置中设置它。例如,我经常使用的一个别名是git tree,它以树的形式打印出一个漂亮的历史日志。
git config --global alias.tree 'log --graph --decorate --pretty=oneline --abbrev-commit'# try it with `git tree`
另一个有用的别名是删除所有合并的分支。
git config --global alias.clbr '!git branch --merged | grep -v \* | xargs git branch -d'
你可以看到它的前缀是”!”,这允许我们使用任何命令,而不仅仅是git命令。
~完,我是刷碗智,今天礼拜六写的,要准备去刷碗了,骨的白!
作者:valeria 译者:前端小智 来源:dev 原文:https://dev.to/valeriavg/master-git-in-7-minutes-gai
本文发布于:2023-04-05 23:18:07,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2327bc5e71331bfa3c5f1f681950742b.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:git查看当前分支命令(教你查看git分支列表).doc
本文 PDF 下载地址:git查看当前分支命令(教你查看git分支列表).pdf
留言与评论(共有 0 条评论) |