So this is the situation: I'm using VS-Code and the integrated terminal, if that matters.
git clone foo
Alright good. Now I add a document and save it.
git add .
git commit -m "COmment what i did"
git push origin master
works like a charm
Now I'm working on a .md file
In said file i want to add pictures.
I want to refer to those like:
./Images/NameOfThePicture.jpg
Using the integrated Terminal in VSC I used:
mkdir Images
So now there is ./src/Documentation/Images
Great!
But when I now do
git add ./Images
git commit -m "foo"
git push origin master
The ./Images directory simply isn't there.
So what I'm looking for is something like
git add ./Images
git commit -m "foo"
git push origin master
IT CAN'T BE THAT HARD, CAN IT?!
I did google a ton of stuff, but simply didn't find an answer I understood right off the bat.
Your help would be greatly appreciated!