On 2014-12-21 17:57, Fred van Stappen wrote: > 5) > git push --all --force
You never need to use --force (at least not for normal every day usage). > > What commands should i use to push to gitorious ? $ git remote add gitorious <url> $ git fetch gitorious Now you have 2 remotes setup. One to GitHub and one to Gitorious. To push to GitHub: $ git push origin To push to Gitorious: $ git push gitorious Suggestion: I would rename the remote 'origin' to 'github' to make it clear where you are pushing too. $ git remote rename origin github Now pushing to GitHub would be: $ git push github Makes sense? ;-) > ( i really prefer to use command-line than external program) +1000 ALL gui front-ends to GIT are limiting. They simply can't do all the functionality git command line can, often don't reflect the true state of your repo, are much slower, and definitely don't support all features. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/ ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk _______________________________________________ mseide-msegui-talk mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

