How to push changes to Git Hub using GIT GUI?
Getting started with Git GUI Step 1: Create Remote Repository Now, we need a Git repository, and we’ll create a new remote repository on Github. Step 2: Create a Local Repository For creating a local repository: in our Git GUI, click on “Create New Repository” . Select the location you wish to store your repository in. It is important to note that the selected repository location MUST NOT exist. In order for this new repository to be initialized, you must first create a file, any file, in your local repo.Then, you must Commit and Push to the remote Git repository location. Step 3: Clone a Remote Repository to a Local Repository In order to clone a repository, click on the “ Clone Existing Repository ” link in the Git GUI window. An existing repository is one that is already initialized and/or has commits pushed to it. Note: In the Source Location field, fill in the Git remote repository location. The target directory works as same in the case of creating a local reposi...