Feat: Introductory git commands

This commit is contained in:
Prabuddha Hans 2024-09-25 15:22:17 +01:00
parent 4298096d45
commit 001c985e81

View file

@ -192,3 +192,27 @@ Please do this
````git pull <remote_name> <branch_name>````
-------------------------------------------------------------------------
````git init````
-------------------------------------------------------------------------
````git remote add origin <repo_url>````
-------------------------------------------------------------------------
````git add <file_name>````
-------------------------------------------------------------------------
````git commit -m <Commit message>````
-------------------------------------------------------------------------
````git pull origin <branch_name>````
-------------------------------------------------------------------------
````git push origin <branch_name>````
-------------------------------------------------------------------------