-
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.
Add create a branch from a tag instructions
- Loading branch information
1 parent
b052e34
commit 31d0ff6
Showing
2 changed files
with
10 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
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,9 @@ | ||
## Create a branch from a tagged release | ||
|
||
1. Go to the tagged releases (<https://github.com/specify/specify7/tags|tags>) for Specify 7 | ||
2. Navigate directly to the last commit linked from the tagged release directly by clicking on the commit hash: (<https://github.com/specify/specify7/commit/a991a42658c83e626f3631326895cbe5ebe4edc4>) From here, copy the last component (full commit hash) from the URL (after /commit/) | ||
3. Open Terminal and went to the `specify7` dir | ||
4. Run `git checkout a991a42658c83e626f3631326895cbe5ebe4edc4` (replacing `a991a42658c83e626f3631326895cbe5ebe4edc4` with the exact commit hash copied in step 2) | ||
5. Create a new branch: `git checkout -b 7961` (the branch name is arbitrary, in this case it is 7961) | ||
6. Push it to GitHub: `git push -u origin 7961` | ||
7. Now you have a new branch based on a tagged release! |