1
0
Fork 0

Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

1 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ git submodule update --remote Common_Library
#### save your work
```
git switch Dev-Dania
git switch Dev-DeveloperName
git add .
git commit -m "representative commit for what you do"
```
@ -29,7 +29,7 @@ git submodule update --remote Common_Library
#### sync your branch with the main branch
```
git switch Dev-Dania
git switch Dev-DeveloperName
git pull origin main
git submodule update --remote Common_Library
# Slove any conflict locally
@ -39,7 +39,7 @@ git submodule update --remote Common_Library
```
git add .
git commit -m "representative commit for what you do"
git push origin Dev-Dania
git push origin Dev-DeveloperName
# create a pull request from your branch to the main branch
```