You can create a directory package.<div><br></div><div>Then, from command line</div><div><br></div><div>git status</div><div><br></div><div>to see the changed files</div><div><br></div><div>git add .</div><div><br></div><div>
to add all pending changed files to index (the pre-commit internal directory of git)</div><div><br></div><div>git add -u</div><div><br></div><div>to remove deleted files from git index</div><div><br></div><div>then</div><div>
<br></div><div>git commit -m "The message"</div><div><br></div><div>I use the command line git (not the git bash), in Windows. There is a git.cmd in the program files git install directory, and I added that directory to my path, AFAIR</div>
<div><br><div class="gmail_quote">On Sun, Dec 30, 2012 at 4:18 PM, H. Hirzel <span dir="ltr"><<a href="mailto:hannes.hirzel@gmail.com" target="_blank">hannes.hirzel@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello<br>
<br>
I am still in the process of learning how to use github. I understand<br>
it allows for various kinds of setups and workflows.<br>
<br>
What I just did is<br>
<br>
1) Installed git for Windows   <a href="http://msysgit.github.com/" target="_blank">http://msysgit.github.com/</a><br>
2) Used the 'git bash' command line interface. I think it is easier to<br>
use than the GUI in the end. The GUI is a bit confusing to me, whereas<br>
using the command line and following instructions like<br>
<a href="https://help.github.com/articles/fork-a-repo" target="_blank">https://help.github.com/articles/fork-a-repo</a> is straightforward<br>
<br>
3) I followed the instructions to clone my repository<br>
    <a href="https://github.com/hhzl/Cuis" target="_blank">https://github.com/hhzl/Cuis</a><br>
<br>
I had forked recently from<br>
<br>
    <a href="https://github.com/jvuletich/Cuis" target="_blank">https://github.com/jvuletich/Cuis</a><br>
<br>
Then I wanted to get the changes of Juan he did recently.<br>
<br>
So I did<br>
<br>
    git remote add upstream <a href="https://github.com/jvuletich/Cuis.git" target="_blank">https://github.com/jvuletich/Cuis.git</a><br>
<br>
    git fetch upstream<br>
<br>
    git merge upstream/master<br>
<br>
<br>
This gave me a local copy of the file<br>
<br>
   ListOfCuisPackages.md<br>
<br>
German and I had made in the last days and which Juan had added in the<br>
meantime to his repository.<br>
<br>
The next thing I would like to figure out how to add a subdirectory<br>
'packages' which is under the control of git and put external *.pck<br>
files I have tested there.<br>
<br>
Regards<br>
--Hannes<br>
<br>
_______________________________________________<br>
Cuis mailing list<br>
<a href="mailto:Cuis@jvuletich.org">Cuis@jvuletich.org</a><br>
<a href="http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org" target="_blank">http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org</a><br>
</blockquote></div><br></div>