-
-
Notifications
You must be signed in to change notification settings - Fork 108
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
feature: setup fork command #89
Comments
This sounds useful but since I don't clone/fork very often I don't quite understand. Similar to the previous issue can you please write the "Current Workflow" and the "Proposed Workflow" |
Say I click the Fork button on your Now if I clone that forked repo down to my machine to hack on, then If I push any code changes, they'll go to my forked repo by default. But since main development is happening in the original repo, So I add the original repo
This adds a new remote destination named Now if I need to pull the latest changes from your repo down to my local checked out code, it would look something like:
If I list my remotes, I should see
|
when a developer clones their fork, the first thing they do is setup the config.
it can be automated with "git remote add upstream git@$(GITR_SERVER)-$(GITR_USER):$(GITR_ORG_UPSTREAM)/$(GITR_REPO_NAME)"
this presumes that your using ssh .
wondering if you think its a good idea to add... ?
The text was updated successfully, but these errors were encountered: