Git
wakin002
这个作者很懒,什么都没留下…
展开
-
git reset 使い方
From: http://transitive.info/article/git/command/reset/ワークツリー、インデックスを HEAD に戻すgit reset --hardワークツリー、インデックスの変更は消えるので注意する。ワークツリー、インデックスは変更しないで HEAD のコミットを取り消すgit reset --soft HEAD^转载 2013-01-25 13:06:56 · 361 阅读 · 0 评论 -
git rebase 出现conflict怎么办
Rebase的执行顺序:git rebase from_branch to_branch从from_branch到目标分支to_branch进行rebase。结果是from_branch的代码更新到to_branch, 同时to_branch的commit log加到from_branch的最前方。例子:1. git rebase remotes/main/master MYB原创 2013-01-25 13:11:52 · 8392 阅读 · 0 评论 -
Studing Git
如何查看一个文件的历史记录:gitk filename //调用外部工具查看历史,非常详细git diff filename //查看文件的改动git log filename //只能查看这个文件的log如何设置自动merge:当向Xcode添加,删除文件时,.pbxproj文件总是需要手动merge,而且一般是同时留下双方的改动。我们可以可以设置自动merg原创 2013-01-29 10:17:52 · 488 阅读 · 0 评论 -
Use git cherry-pick
If you used commit -a -m to commit other branch's changes(branch A) to the current branch(branchB) by mistake, you want to put the last commit back branch A, so use git cherry-pick logidwhere, log原创 2013-02-21 12:13:17 · 408 阅读 · 0 评论 -
IOS项目使用Git的正确步骤
0. git fetch0.1 git checkout master0.2 git pull orgin master //Get the new code from remote:master1. Create new branch by Xcode (local).2. work3. commit4. rebase(Do it before commit if necessary原创 2013-01-21 09:51:39 · 546 阅读 · 0 评论 -
How to use GIT?
Branch operation:Create a local branch: git branch new_branch_name Delete a local branch: git branch -d branch_name Push a local branch to remote: git push origin branch_name D原创 2013-01-25 13:16:27 · 484 阅读 · 0 评论 -
GitHubに複数のアカウントを作ってひとつの端末から操作する
とある事情でGitHubに複数アカウントを持っていて、それを同じ端末から使いたかった。GitHubのアカウントに登録するSSH公開鍵はGitHub全体で一意でなければならないらしく、同じSSH公開鍵を複数のアカウントでつかいまわすことはできない。解決方法はここに載っていたhttp://help.github.com/multiple-ssh-keys/要转载 2013-01-25 13:13:10 · 686 阅读 · 0 评论 -
git stash 使い方
From: http://transitive.info/article/git/command/stash/現在のワークツリーを一時的に保存するsave をつけて実行する。git stash savesave を省略して次のようにしても良い。git stashまた、メッセージをつけるにはgit stash save "message"とす转载 2013-01-25 13:04:35 · 758 阅读 · 0 评论 -
A Simple Git Rebase Workflow, Explained
POSTED BY JOHN ON MAY 6TH, 2011 IN MISCELLANY | 1 COMMENTIN MY CURRENT PROJECT, I’VE BEEN TRYING TO HELP MY TEAM UNDERSTAND GIT. RECENTLY, WE’VE BEEN HAVING PROBLEMS WITH BROKEN COMMITS, L转载 2013-01-25 13:17:33 · 704 阅读 · 0 评论 -
Git错误non-fast-forward后的冲突解决
当要push代码到git时,出现提示:error:failed to push some refs to ...Dealing with “non-fast-forward” errorsFrom time to time you may encounter this error while pushing:$ git push origin master转载 2013-01-25 13:09:54 · 447 阅读 · 0 评论 -
Using Git for Unity 3D Source Control
Before I start; using Git to control source for Unity is not directly supported (though the concept is the same). Use this at your own risk and back up all of your data before attempting it.Hell转载 2013-05-04 21:39:51 · 869 阅读 · 0 评论