Skip to content
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

[Documentation:Developer] set git credentials working with forks #655

Merged
merged 2 commits into from
Feb 7, 2025
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
10 changes: 9 additions & 1 deletion _docs/developer/getting_started/commit_to_PR_from_fork.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,15 @@ The instructions below are for command line use of git.
```

Additionally, find the name of the fork on the fork's page on Github.
The `fork_name` may simply be `Submitty`, or the author may have chosen to another name.
The `fork_name` may simply be `Submitty`, or the author may have chosen another name.

Note: make sure your git credentials are set before pulling or pushing to a forked
repo. You can do this with the following commands. Use the `--global` flag if you
want to set this outside of just Submitty.
```
git config user.name "Your Name"
git config user.email "Your Email"
```


3. Next, make a local branch on your computer in your working repository
Expand Down
Loading