zoukankan      html  css  js  c++  java
  • git 常用操作

    查看某文件的某些行的变化历史:

    $ git log --pretty=short -u -L 2003,2005:Executor.cpp

    http://stackoverflow.com/questions/8435343/retrieve-the-commit-log-for-a-specific-line-in-a-file

    Undo a commit and redo

    $ git commit -m "Something terribly misguided"              (1)
    $ git reset --soft HEAD~                                    (2)
    << edit files as necessary >>                               (3)
    $ git add ...                                               (4)
    $ git commit -c ORIG_HEAD                                   (5)
    
    1. This is what you want to undo

    2. This is most often done when you remembered what you just committed is incomplete, or you misspelled your commit message1, or both. Leaves working tree as it was before git commit.

    3. Make corrections to working tree files.

    4. git add whatever changes you want to include in your new commit.

    5. Commit the changes, reusing the old commit message. reset copied the old head to .git/ORIG_HEADcommit with -c ORIG_HEAD will open an editor, which initially contains the log message from the old commit and allows you to edit it. If you do not need to edit the message, you could use the -C option instead.

    git ignore 对某些文件失效:

    To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm --cached filename

    To untrack every file that is now in your .gitignore:

    First commit any outstanding code changes, and then, run this command:

    git rm -r --cached .
    

    This removes any changed files from the index(staging area), then just run:

    git add .
    

    Commit it:

    git commit -m ".gitignore is now working"
    

    To undo git rm --cached filename, use git add filename.

    http://stackoverflow.com/questions/6964297/untrack-files-from-git

    git update-index should do what you want

    This will tell git you want to start ignoring the changes to the file
    git update-index --assume-unchanged path/to/file

    When you want to start keeping track again
    git update-index --no-assume-unchanged path/to/file

    Github Documentation: update-index 

     
     
    分支操作
    我先开个分支
    $ git checkout -b transform
    push 上去
    $ git push -u origin transform
     
    同事:
    先到 目录
    $ cd 
     
    获取远程仓库
    $ git fetch
     
    在本地新建 transform 分支并设置该分支 track 远程 transform
    $ git checkout --track -b transform origin/transform
     
    在这个分支下开发程序变换的功能。git add, commit 后 push 到服务器上
    $ git push
    上面这个命令会将本地 transform 分支上的修改 push 到远程对应的 transform 分支上
     
    以上操作不影响 master 分支,如果要切换到 master 分支,可用
    $ git checkout master
    要切换到 transform分支可用
    $ git checkout transform

    from:  http://rogerdudler.github.io/git-guide/index.zh.html

    git - 简明指南

    助你入门 git 的简明指南,木有高深内容 ;)

    作者:罗杰·杜德勒 
    感谢:@tfnico@fhd 和 Namics
    其他语言 englishdeutschespañolfrançaisindonesianitalianonederlandspolskiportuguêsрусскийtürkçe
    မြန်မာ日本語한국어 Vietnamese 
    如有纰漏,请在 github 提报问题

    Frontify - Collaboration for Web Designers & Front-End Developers

    创建新仓库

    创建新文件夹,打开,然后执行 
    git init
    以创建新的 git 仓库。

    检出仓库

    执行如下命令以创建一个本地仓库的克隆版本:
    git clone /path/to/repository 
    如果是远端服务器上的仓库,你的命令会是这个样子:
    git clone username@host:/path/to/repository

    工作流

    你的本地仓库由 git 维护的三棵“树”组成。第一个是你的 工作目录,它持有实际文件;第二个是 暂存区(Index),它像个缓存区域,临时保存你的改动;最后是 HEAD,它指向你最后一次提交的结果。

    添加和提交

    你可以提出更改(把它们添加到暂存区),使用如下命令:
    git add <filename>
    git add *
    这是 git 基本工作流程的第一步;使用如下命令以实际提交改动:
    git commit -m "代码提交信息"
    现在,你的改动已经提交到了 HEAD,但是还没到你的远端仓库。

    推送改动

    你的改动现在已经在本地仓库的 HEAD 中了。执行如下命令以将这些改动提交到远端仓库:
    git push origin master
    可以把 master 换成你想要推送的任何分支。 

    如果你还没有克隆现有仓库,并欲将你的仓库连接到某个远程服务器,你可以使用如下命令添加:
    git remote add origin <server>
    如此你就能够将你的改动推送到所添加的服务器上去了。

    分支

    分支是用来将特性开发绝缘开来的。在你创建仓库的时候,master 是“默认的”分支。在其他分支上进行开发,完成后再将它们合并到主分支上。

    创建一个叫做“feature_x”的分支,并切换过去:
    git checkout -b feature_x
    切换回主分支:
    git checkout master
    再把新建的分支删掉:
    git branch -d feature_x
    除非你将分支推送到远端仓库,不然该分支就是 不为他人所见的
    git push origin <branch>

    更新与合并

    要更新你的本地仓库至最新改动,执行:
    git pull
    以在你的工作目录中 获取(fetch) 并 合并(merge) 远端的改动。
    要合并其他分支到你的当前分支(例如 master),执行:
    git merge <branch>
    在这两种情况下,git 都会尝试去自动合并改动。遗憾的是,这可能并非每次都成功,并可能出现冲突(conflicts)。 这时候就需要你修改这些文件来手动合并这些冲突(conflicts)。改完之后,你需要执行如下命令以将它们标记为合并成功:
    git add <filename>
    在合并改动之前,你可以使用如下命令预览差异:
    git diff <source_branch> <target_branch>

    标签

    为软件发布创建标签是推荐的。这个概念早已存在,在 SVN 中也有。你可以执行如下命令创建一个叫做 1.0.0 的标签:
    git tag 1.0.0 1b2e1d63ff
    1b2e1d63ff 是你想要标记的提交 ID 的前 10 位字符。可以使用下列命令获取提交 ID:
    git log
    你也可以使用少一点的提交 ID 前几位,只要它的指向具有唯一性。

    替换本地改动

    假如你操作失误(当然,这最好永远不要发生),你可以使用如下命令替换掉本地改动:
    git checkout -- <filename>
    此命令会使用 HEAD 中的最新内容替换掉你的工作目录中的文件。已添加到暂存区的改动以及新文件都不会受到影响。

    假如你想丢弃你在本地的所有改动与提交,可以到服务器上获取最新的版本历史,并将你本地主分支指向它:
    git fetch origin
    git reset --hard origin/master

    实用小贴士

    内建的图形化 git:
    gitk
    彩色的 git 输出:
    git config color.ui true
    显示历史记录时,每个提交的信息只显示一行:
    git config format.pretty oneline
    交互式添加文件到暂存区:
    git add -i

    评论

  • 相关阅读:
    css中margin-left与left的区别
    Python文件和目录模块介绍:glob、shutil、ConfigParser
    [ Python入门教程 ] Python文件基本操作_os模块
    使用Pyinstaller转换.py文件为.exe可执行程序
    Windows命令行打开常用界面
    如何做好性能测试_流程篇
    Windows查看指定端口是否占用和查看进程
    ‘操作无法完成 ,因为其中的文件夹或文件已在另一程序中打开’问题解决
    bat脚本基础教程
    vi编辑器常用命令
  • 原文地址:https://www.cnblogs.com/jjtx/p/5075594.html
Copyright © 2011-2022 走看看