-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finos#989 Updated docco for handling remotes
- Loading branch information
1 parent
3b62b3b
commit f524d08
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# FAQs | ||
|
||
- [001 - How do I debug JSON Messages on the Wire](debugging_json_messages) | ||
- [002 - Working on other peoples Git remotes](git_remotes) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Working on other people's Git remotes | ||
|
||
```bash | ||
# change forkname for the fork you want to use | ||
git remote add <forkname> https://github.com/<forkname>/vuu.git | ||
|
||
# check remote has been added | ||
git remote -v | ||
|
||
# fetch the remote | ||
git fetch <forkname> | ||
|
||
# check out the branch | ||
git checkout -b <branchname> --track <forkname>/<branchname> | ||
|
||
``` | ||
## Merging into your local working branch | ||
|
||
(make sure you're checked out on your working branch and that you've already added their remote and fetched as above) | ||
```bash | ||
git merge <forkname>/<branchname> | ||
``` | ||
|