why i am always feeling stupid using git... hub... in my naive way of thinking git clone https://[email protected]/user/repo.git < me
-- if sync needed git remote add upstream https://github.com/RIOT-OS/riot.git git fetch upstream -- git checkout -b some-feature # Adds git commit -a -m "Add first draft of some feature" git push origin some-branch (trigger pull via web interface finaly) is fully githbu compatible- please tell me if i am dead wrong > git merge FETCH_HEAD > i dont get it - i dont want to merge(?) > The official documentation of git [4] is very good btw and includes also a > book [5] on it's concepts with several examples of how to do stuff. > hm aggain i dont think i am a person to stuid to read documentation, hehe - i do not realy like the github help https://help.github.com/articles/fork-a-repo/ < this one is nice - with command lines but the next page https://help.github.com/articles/fork-a-repo/ < sux no command line ps. I remeber I saw the right commandline on githubhelp. I invested maybe in total 4h+ the last 3 weeks to understand and read github, and understand that github is !git I just want to add my c code that it. thanks for ur help but i realy starting to hate it > Martine Lenders <[email protected]> hat am 4. Februar 2015 um 20:59 > geschrieben: > > Hello Jan, > > 2015-02-04 19:58 GMT+01:00 Jan Wagner <[email protected] > <mailto:[email protected]> >: > > > hi devs, > > > > i still had some troubles with git, and create correctly branched pulls. > > this is the best command line based > > tutorial I found - and now even I seem to understand :) > > > > https://www.atlassian.com/git/tutorials/making-a-pull-request/example > > > > Keep in mind, that Pull Requests are not a feature of Git, but of the > software that is provided by your repository hoster (in our case Github). What > Atlassian understands as a Pull Request can differ vastly from what Github > sees as a Pull Request (though I do not expect that much of a difference). > Maybe it is helpful to fact-check in Github's Help page [1]. > > > > > > i still did not find the correct way to add TAGS to pulls - can anyone > > give me a hint on that ? > > > > `git pull` is a concatination of the commands `git fetch` and `git merge > FETCH_HEAD` [2]. In so far it might be possible to `git pull -t` to get the > tags. However in general it is advisable to get references and tags by purely > fetching with `git fetch -t` [3]. > > The official documentation of git [4] is very good btw and includes also a > book [5] on it's concepts with several examples of how to do stuff. > > Github's documentation is in a few cases spotty but not bad, either [6]. > > Hope I could solve some questions, > > Cheers, > Martine > > [1] https://help.github.com/search/?utf8=%E2%9C%93&q=pull+request > <https://help.github.com/search/?utf8=%E2%9C%93&q=pull+request> > [2] http://git-scm.com/docs/git-pull > [3] http://git-scm.com/docs/git-fetch > [4] http://git-scm.com/docs/ > [5] http://git-scm.com/book/en/v2 > [6] https://help.github.com/ > _______________________________________________ > devel mailing list > [email protected] > http://lists.riot-os.org/mailman/listinfo/devel > _______________________________________________ devel mailing list [email protected] http://lists.riot-os.org/mailman/listinfo/devel
