美文网首页
我的 git 备忘

我的 git 备忘

作者: jiang | 来源:发表于2018-01-21 04:47 被阅读333次
分支

创建并切换至新分支 dev
git checkout -b dev

查看分支
git branch

push an existing repository from the command line
git remote add origin https://github.com/mozjiang/jekyll-demo.git
git push -u origin master

对特定文件不追踪

在 .gitignore 中写入
/images
对名字为'images'的文件和文件夹都不追踪。

/images/
仅对名字为'images'的文件夹不追踪

git 对已追踪的文件取消追踪

你需要 git rm --cached <file> 命令
如:
git rm -r --cached WebRoot/WEB-INF/classes/**/*


代理相关

设置 socks 5 代理

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

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

git push 或者 clone 出错

出错代码:

error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
ffatal: The remote end hung up unexpectedly
atal: early EOF
fatal: index-pack failed

解决方法:增大 postbuffer

git config --global http.postBuffer 1048576000


git 初始化相关操作

你在安装 Git 之后想要做的第一件事是告诉它你的名字和邮箱,个性化一些默认设置。一般初始的设置过程看上去是这样的:

# 告诉Git你是谁

git config --global user.name "zhang san"

git config --global user.email john@example.com

# 选择你喜欢的文本编辑器

git config --global core.editor vim

# 添加一些快捷方式(别名)

git config --global alias.st status

git config --global alias.co checkout

git config --global alias.br branch

git config --global alias.up rebase

git config --global alias.ci commit

git commit
git add hello.py
git commit

它会打开一个文件编辑器(可以通过 git config 设置) 询问提交信息,同时列出将被提交的文件。

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
#modified: hello.py

Git 对提交信息没有特定的格式限制,但约定俗成的格式是:在第一行用 50 个以内的字符总结这个提交,留一空行,然后详细阐述具体的更改。比如:

Change the message displayed by hello.py

- Update the sayHello() function to output the user's name
- Change the sayGoodbye() function to a friendlier message

注意,很多开发者倾向于在提交信息中使用一般现在时态。这样看起来更像是对仓库进行的操作,让很多改写历史的操作更加符合直觉。


git log

用法 一节提供了 git log 很多的栗子,但请记住,你可以将很多选项用在同一个命令中:

git log --author="John Smith" -p hello.py
这个命令会显示 John Smith 作者对 hello.py 文件所做的所有更改的差异比较(diff)。

..句法是比较分支很有用的工具。下面的栗子显示了在 some-feature 分支而不在 master 分支的所有提交的概览。

git log --oneline master..some-feature


You can undo git add before commit with

git reset <file>
which will remove it from the current index (the "about to be committed" list) without changing anything else.

You can use

git reset
without any file name to unstage all due changes. This can come in handy when there are too many files to be listed one by one in a reasonable amount of time.


git push -u origin master

相关文章

  • 我的 git 备忘

    分支 创建并切换至新分支 devgit checkout -b dev 查看分支git branch push a...

  • Git常用命令备忘

    Git常用命令备忘 git config --global user.name "robbin" git conf...

  • Git 相关

    Git相关的命令备忘 Git每次输入账号和密码在Git目录下执行命令: git config --global c...

  • git备忘

    git备忘录 官网教程 “origin” 并无特殊含义远程仓库名字 “origin” 与分支名字 “master”...

  • Git备忘

    用户信息 新项目 分支操作 上传某个本地tag 上传本地所有tag Error dst refspec xxxx ...

  • git备忘

    下载git 初次运行 Git 前的配置 git config --global user.name "

  • Git备忘

    About 版本控制:一种记录若干文件内容变化(修改),以便将来查阅特定版本修订的解决办法。而我们所使用的Git就...

  • git命令整理

    git常用命令 GIT常用命令备忘:http://stormzhang.com/git/2014/01/27/gi...

  • 快速上手Git

    使用git 命令行时,经常会忘记相应的git命令,这次梳理最基本的git使用当做备忘,顺带帮助读者快速上手git。...

  • Xcode集成码云Git小白向教程

    备忘备忘备忘! 一.注册码云账号 二.在码云账号下创建项目 三.本地项目连接远程Git仓库: 1.本地使用终端cd...

网友评论

      本文标题:我的 git 备忘

      本文链接:https://www.haomeiwen.com/subject/wxhlpxtx.html