-
Notifications
You must be signed in to change notification settings - Fork 2
Git Panic #7
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
Comments
Exercise:
|
FYI could be of interest, especially the references: https://github.com/nceas-coding-club/hacky-hour-materials/blob/master/2018-05-08_git-advanced.md |
Git WorkflowStart with: |
|
git
commandsgit status
git branch
git branch -r
git branch -a
git checkout name_of_branch
git checkout -b new_branch
git push -u origin
git add .
git commit -m write_a_message_here
reset --hard origin/main
git push -u origin branch-name
git log --graph --all
git push --delete origin branch_name
The text was updated successfully, but these errors were encountered: