I am new to Git.
I can get a Git directory structure in a bare directory with git -init --bare.
I can see where the git information is stored.
However, w
I am ultimately attmepting to create remote and local repositories completely from scratch. These are the commands I've used. If anyone has suggestions I'd gladly hear them.
cd C:\Users\JimPC\Documents\pretendCloud
git init --bare Project1
cd C:\Users\JimPC\Documents\MyJava
git clone C:\Users\JimPC\Documents\pretendCloud\Project1 Project1
cd Project1
dir >File01.txt
git add File01.txt
git commit -m "Initial State Commit"
git push -u origin master
After these commands, I believe I am ready to continue building my project on the master branch.