Commands git #60993
-
|
Hey Im new to github and I wanted to know the basics commands of git to use on github |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Hey this is the basics git commands I know!
Hope it helps! |
Beta Was this translation helpful? Give feedback.
Hey this is the basics git commands I know!
The most useful (for me) is push, add, commit, pull and status
Assign user to active session
git config --global user.name "<your_name>"Assign email to active session:
git config --global user.email "<your_email>"Create a new branch or branch:
git checkout -b <branch name>Change branch/branch:
git checkout <branch name>Initialize the ".git/" file to control the folder on the local machine that will later upload to the Github repository:
git initClone/download the entire project EXCLUSIVELY from YOUR remote repository, informing the link of the repository where the fork was given and not the original project:
git clone <url>Va…