References

The United States is going through a gun violence crisis. An epidemic which is engulfing many lives and there seems to be no end to it . American citizens live in constant fear of another attack…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




How to install Git on windows

Git is a popular open-source project management tool that keeps track of projects across several teams and revision levels.

Git is an open-source version control system (VCS) used to effectively manage small to very large projects. It is a DevOps tool for source code management. Git tracks changes made to the source code, enabling non-linear development and allowing several engineers to collaborate almost instantly.

Git enables users to work remotely on a project from anywhere globally. A user picks up an issue to work on, makes the necessary changes, push the changes and the cycle continues. This is possible because of Git’s non-linear development tendency. Git has features specifically designed for viewing and navigating a non-linear development history and facilitates quick branching and merging. Git assumes that you can merge changes more often than you write them.

Here is a step-by-step tutorial for installing Git on Windows 10. Stay on this guide!

Follow the process below to successfully install Git on your Windows operating system:

Step 2: Launch the installer

Step 3: Select the installation location and click Next

Step 4: Leave the default Selected Components and click Next.

Step 5: The installer offers Git as the default Start Menu Folder for the program’s shortcut, click Next.

Step 6: Use the drop-down menu to select Visual Studio Code as Git’s default editor, or choose your preferred editor. Click Next.

Step 7: In the dialogue select Let Git decide and click Next.

This step enables you to change the name of your first branch. The default value is “master.” Using the default selection is recommended unless your team demands a different name.

Step 8: Select Git from the command line and also from 3rd-party software and click Next.

This installation phase permits the modification of the PATH environment. The PATH is the collection of folders included by default when you execute a command from the command line.

Step 9: Select Use bundled OpenSSH and click Next.

The installation now requests the SSH client to be used with Git. Git has its SSH client, so you may leave the default choice if you don’t need a particular one.

Step 10: Select “use the native Windows secure channel library” and click Next.

The following option concerns server certificates. The majority of consumers should use the default. You may need to convert to Windows Store certificates if working in an Active Directory environment.

Step 11: Leave the default and click Next for the rest of the configuration.

Step 12: Leave the experimental configuration option unchecked and click Next.

Step 13: Wait till it installs completely and clicks Finish. Then launch Git Bash.

Congratulations! You have successfully installed Git on your Windows PC.

Once installed, follow the processes below to use Git on your Windows PC.

Step 1: Launch the Git Bash.

Step 2: Follow the Git command line below to create an issue:

2. For any help:

3. Create a local directory:

4. To initialize the directory:

5. Go to the folder where “test” is created and create a text document named “demo.txt”. In the “demo” file, put any content, like “Hello Zaycodes.” Save and close the file.

6. Enter the Git bash interface and type in the following command to check the status:

7. Add the “demo.txt” file you created to the current directory using the following command:

8. Make a commit using the following command:

9. Link the Git to a Github Account:

Note: Use your correct github username.

11. Go back to Git bash and link the remote and local repository using the following command:

Like this:

12. Push the local file onto the remote repository using the following command:

Add a comment

Related posts:

Redesigning the Pioneer Plaque

This is one of the projects I recently completed, and I thought it was a super cool and unique exercise, so I’ve documented it below! The Pioneer plaques, designed by Carl Sagan and Frank Drake, are…