Re: [git-users] Process of branching

2012-09-10 Thread Łukasz Siwiński
Hmm... Local Repo 12 commits ahead of origin/master means, that You haven't pushed your last 12 commits to remote (@github) origin/master branch if you do: git push # what is the same as git push origin master then You'll see your changes on github. 10-09-2012 14:14, Rick DeNatale

Re: [git-users] Process of branching

2012-09-07 Thread Łukasz Siwiński
Have You completed those 2 steps: - https://help.github.com/articles/set-up-git - https://help.github.com/articles/create-a-repo ? Pozdrawiam, -- Łukasz Siwiński http://siwinski.info Wysłano z telefonu. 07-09-2012 17:16, Patrick pn1.d...@gmail.com napisał(a): Been using git (with GitHub

Re: [git-users] Trying to add a submodule which still exists on the index (unable to remove the submodule from there)

2012-09-03 Thread Łukasz Siwiński
I haven't tried submodules yet, but did You commited your submodule? Command: git add something/ adds your files (submodules?) only to stage index. If You want to commit files added to stage index, You should commit them with: git commit -m your commit message Pozdrawiam, -- Łukasz Siwiński

Re: [git-users] Re: [newbie] convenience function: overwrite from remote?

2012-08-17 Thread Łukasz Siwiński
CURRENT_BRANCH=$(git branch /dev/null; if [ $? -eq 0 ]; then echo $(git branch | grep '^*' |sed s/\*\ //); fi) Does Your 5th line is missing closing bracket or maybe I don't understand something? Pozdrawiam, -- Łukasz Siwiński 17-08-2012 23:39, Tom Roche tom_ro...@pobox.com napisał(a): Tom

Re: [git-users] New user gets lost driving the Git Bash

2012-07-24 Thread Łukasz Siwiński
PS: The command like provided with Git for Windows is something like Bash for Linux. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com. To unsubscribe from this group, send

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Łukasz Siwiński
Ps: after: $ echo dir alias='ls' .bashrc exit relaunch your prompt (bach/command line) 2012/7/24 Łukasz Siwiński lsiwin...@gmail.com: do the following: echo alias dir =ls enter/ if you want to go to c: drive do the following cd /c if you want to go to d: do the following cd /d