Skip to content

Commit

Permalink
Update README_dev.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jellepoland authored Jul 15, 2024
1 parent fddf932 commit 6ede2ec
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README_dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,24 @@ Hi! Welcome to this Python Template, this `README_dev.md` contains instructions
3. Use provided cmds to checkout this branch locally
4. --- Implement your new feature---
5. git add, git commit (with # to current Issue number), git push
6. Use a pull-request, with `base:develop`, to merge this feature branch and close this issue
7. Once merged, delete this feature branch
8. Update branch information locally using `git fetch --prune`, pull in new info `git pull origin develop` and delete branch locally using `git branch -d <enter branch name>`
9. Close issue
```
git add .
git commit -m "#<enter tag number> <enter commit message name>"
git push
```
7. Use a pull-request, with `base:develop`, to merge this feature branch and close this issue
8. Once merged, delete this feature branch on the remote
9. Update branch information locally using `git fetch --prune`, pull in new info `git pull origin develop` and delete branch locally using `git branch -d <enter branch name>`
```
git fetch --prune
git pull origin develop
git checkout develop
```
10. Delete branch
```
git branch -d <enter branch name>
```
12. Close issue


## Explanation of folders/files
Expand Down

0 comments on commit 6ede2ec

Please sign in to comment.