Git Hub commands #43

1. Git config Git cinfig is used to configure username and email address. This configuration is used when you code for GitHub. Git config – global user.name “[name]”git Config – global user.email “[emailaddress]” 2. Git init Git init is used to create new repository. And it is also used to create exiting project as a git project. Git init [repository name] 3. Git clone Git clone is used to download repository in your machine using URL. Git clone [url] 4. Git add If you to add specific file, then you can use this command Git add [file] If you want to push more than one file from any directory, then use this command Git add* 5. Git commit Git command is used to add changes to your local repository. Git commit –m “<message>” 6. Git push Git push is used to push th...