DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Mastering Git
  • Terraform Best Practices: The 24 Practices You Should Adopt
  • How To Use Git Cherry-Pick to Apply Selected Commits
  • Top 20 Git Commands With Examples

Trending

  • Building AI-Powered Java Applications With Jakarta EE and LangChain4j
  • Building a Spring AI Assistant With MCP Servers: A Step-by-Step Tutorial
  • Persistent Memory for AI Agents Using LangChain's Deep Agents
  • 5 AI Security Incidents That Broke Things in Production (and What They Have in Common)
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. How to Work With Git From Command Line (Windows)

How to Work With Git From Command Line (Windows)

Learn how to use the command line to work with Git in Windows.

By 
Mohamed Radwan user avatar
Mohamed Radwan
·
Oct. 22, 15 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
7.0K Views

Join the DZone community and get the full member experience.

Join For Free

It’s very important to know the commands behind the UI in Visual Studio, in this post I just explain the basic you need to work with Git from the command line.

The first step is to set the global settings, but first list display what its value is.

git config –global -l

If there is no settings it will tell you no such a file, if there is data it will be displayed as the following:
git config --global -l

If you open the user folder, you can see that file .getconfig, also if you open the Visual Studio and navigate to global settings you will find that this info has been set too.
.gitconfig

I can also edit this file using VIM:
git config --global -e

This will open Unix editor, to quite that window I need to type :q +enter.

You can press i to start entering text and save by pressing esc and :wq and enter, this will commit with the message you typed. In your current state, to just come out without committing, you can do :q
git config --global -e edit

If you open the file without a proper exit, it will create a swap file and you can’t open it again smoothly, you just need to delete that swap file or close the file as mention before

.gitconfig.swp

Navigate to the directory you want to use and type:
git init
git clone https://github.com/youraccount/rep

This will copy all files to your local files, try to add new file and then add it using git add

Try to see the status using git status

Commit the changes git commit -m ” your message”

Command (computing) Git

Published at DZone with permission of Mohamed Radwan. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Mastering Git
  • Terraform Best Practices: The 24 Practices You Should Adopt
  • How To Use Git Cherry-Pick to Apply Selected Commits
  • Top 20 Git Commands With Examples

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook