8000 Update Ja translation to 0430782 by hail2u · Pull Request #79 · tiimgreen/github-cheat-sheet · GitHub
[go: up one dir, main page]

Skip to content

Update Ja translation to 0430782 #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
1 commit merged into from
Jul 12, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,22 @@ $ git fetch origin '+refs/pull/*/head:refs/remotes/origin/pr/*'
$ git checkout pr/42 pr-42
```

もしくは様々なリポジトリで作業をするのなら、代わりにグローバルのGit設定で行うことにより、pull requestの取得をグローバルに設定すると良いだろう。

```bash
git config --global --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*"
```

こうすると以下の様な短いコマンドを利用することが可能になる:

```bash
git fetch origin
```

```bash
git checkout pr/42
```

[*pull requestのチェックアウトについてもっと詳しく*](https://help.github.com/articles/checking-out-pull-requests-locally)

### 空のコミット :trollface:
Expand Down
0