0 votes
in Amazon Database by
Name a few Git Commands and state their function

1 Answer

0 votes
by
The command Git Config helps in configuring the user name and email, while Git init is used to initialize a local git repo. The Git Commit command commits changes to the head but not the remote repository, and Git Merge merges a branch into an active branch. Git Push uploads data from the local to a remote repository, and Git Pull gets and downloads data from a remote repository.
...