diff --git a/Typical-Git-Workflow.md b/Typical-Git-Workflow.md index 2314c23..6ebc529 100644 --- a/Typical-Git-Workflow.md +++ b/Typical-Git-Workflow.md @@ -9,9 +9,9 @@ It's appreciated if every single commit in a branch on its own compiles on all s ## Before you begin -1. GitHub fork the project -2. Clone your GitHub fork locally - * `git clone https://github.com/your-username/suyu.git` +1. Fork the project +2. Clone your fork locally + * `git clone https://git.suyu.dev/your-username/suyu.git` *or* `git clone git@ssh.suyu.dev:your-username/suyu.git` 3. Grab the submodules * `git submodule update --init --recursive` 4. Set your `upstream` to the main project repository @@ -61,7 +61,7 @@ To append changes to the most recently made commit, simply perform the following * `git rebase -i upstream/master` 2. Update `origin/new-branch-name` * `git push origin new-branch-name --force` -3. Create the pull request on GitHub to merge `origin/new-branch-name` into `upstream/master` +3. Create the pull request to merge `origin/new-branch-name` into `upstream/master` ## Gracefully receive feedback from the team