List some useful git commands.
Last active
April 14, 2023 07:41
-
-
Save Hansimov/23bb639911d474c7ab5b93d32bcbd99d to your computer and use it in GitHub Desktop.
Collection of useful git commands in daily work
Remove contributor from GitHub repo page:
- On GitHub web page, change a branch name (e.g.,
main
-->main1
).- It updates the contributor list on the GitHub repo dashboard.
- Then change it back (
main1
-->main
).
References:
- git - Removing contributor from github.com? - Stack Overflow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Git pull submodule:
git submodule update --init --recursive # (First time) git submodule update --recursive --remote
References: