[git-users] Cannot update clone on local push

2010-03-05 Thread joe
So to start, here's my environment: First off, I have been following http://www.forwardthinkingdesign.com/blog/manage-and-deploy-drupal-code-securely-git-gitosis-and-capistrano in order to set up gitosis. Second, I'm on OSX running a Ubuntu 9.10 2.6.31-19-server virtual machine in VMFusion which

[git-users] git push to different branches

2010-07-28 Thread joe
** checkout branch that is worked on and pull new data from branchname ** git checkout devbranch git pull . branchname git push origin devbranch:refs/heads/devbranch So, if anyone could clarify this for me that would be awesome :) Regards, Joe -- You received this message because you are s

[git-users] Re: Sex Dating Service Invitation

2010-11-18 Thread joe
Committing is a totally different story. On Nov 18, 12:21 pm, Bryce Verdier wrote: > LOL > > Well played!! > > On 11/18/2010 09:14 AM, Julien Rabin wrote: > > > Great. People here know how to push and pull... > > > Le 18 nov. 2010 18:08, Kiera Peters a crit : > > >> You have been invited to Sex D

Re: [git-users] I create GitPrep. This is GitHub portable clone.

2014-04-30 Thread Joe Strackar
Hi, I tried it today, but: is it possible to create users online? how to create repos online? Thanks a lot! Regards Joe Am Montag, 1. Juli 2013 13:22:05 UTC+2 schrieb 木本裕紀: > > thanks. GitPrep is very easy to install. you only run setup.sh. If you > want to create private repos

[git-users] Git Issue/Bug Help Please!

2014-10-16 Thread Joe Baldwin
Hi, When I try to launch git on windows 7 64bit, I keep getting this error. Any help guys? Thanks! -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git

[git-users] Error in Git documentation for branches, diagram 3-9. Divergent history

2015-11-08 Thread Joe Do
Just learning git and was reading the docs. Am I correct to believe there's an error there ? 87ab2 and c2b9e commit labels need to be switched around, since testing branch pointed at 87ab2 and not the later created c2b9e that came off master. Could get quite confusing for some noobs like me ;)

[git-users] Re: Error in Git documentation for branches, diagram 3-9. Divergent history

2015-11-08 Thread Joe Do
https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.co

Re: [git-users] What is the gitignore syntax for ignoring a directory pattern at any level

2010-08-10 Thread Joe Hassick
Try just lib/ Joe Hassick Web Developer Pencor Services, Inc. On Aug 10, 2010, at 6:12 PM, vfclists wrote: > > I need to create a .gitignore entry that excludes lib folder > irregardless of their level. > > Will */lib do that? > > -- > You received this message be

Re: [git-users] What is the best technique to split the code between repos?

2010-09-13 Thread Joe Hassick
it's an idea. Hope that made sense. Joe On Sep 13, 2010, at 6:09 PM, ksamdev wrote: > Hi, > > I have code that can be split into 3 parts: A, B and C. > > In fact, I can only have: A+B or B+C combinations in the same folder. > > What is the best technique to or

Re: [git-users] GIT cloning(or pull/push) doesn't work properly if you have a sub-folder with its own GIT repo.

2011-04-22 Thread Joe Hassick
://git.wiki.kernel.org/index.php/GitSubmoduleTutorial http://blog.zarate.tv/2010/10/05/working-with-git-submodules HTH, Joe On Fri, Apr 22, 2011 at 12:55 PM, siddii wrote: > I don't want to categorize this as bug until I hear expert panel's > opinion. Spare me if its a known

Re: [git-users] Re: GIT cloning(or pull/push) doesn't work properly if you have a sub-folder with its own GIT repo.

2011-04-25 Thread Joe Hassick
folder into the parent > repo. It's all good now :) > > On Apr 25, 11:35 am, siddii wrote: > > Hi Joe, > > > > Thanks for your response. As I mentioned earlier, I realize > > submodules might be the way to go for this kind of setup. However, > >

Re: [git-users] Re: Question about revert.

2012-10-17 Thread Joe Cabezas
also, the fastest way is to reset --hard to a base commit, create a new branch and then cherry-pick each commit in the order you want 2012/10/17 Thomas Ferris Nicolaisen > On Wednesday, October 17, 2012 8:08:47 AM UTC+2, seonguk.baek wrote: > >> Dear all. >> >> branch : dev01 >> 1 - 2 - 3(HEAD)

Re: [git-users] about git alias ...

2012-10-17 Thread Joe Cabezas
you can edit /etc/gitconfig file, you can edit it by addidng --system to the git config command like this git config --system color.ui auto please check manual page: git help config 2012/10/17 Cheung Benson > Hi There, > > Recently I notice git have alias option for shorten long command > >

[git-users] alternatives to git instaweb?, want to show uncommited changes

2012-10-24 Thread Joe Cabezas
hello! i want to show uncommited changes using git instaweb, but instaweb only shows commited changes... i just want to show the git diff output to someone easy..., there is any alternatives to git instaweb?, thank you -- You received this message because you are subscribed to the Google Groups

Re: [git-users] Re: alternatives to git instaweb?, want to show uncommited changes

2012-10-26 Thread Joe Cabezas
hahaah thanks thomas, too bad that google-groups seems not like your replys :( that's a good approach, i just commited the changes show the last commit to a colleague, and then use: git reset, and viola, all again as uncomitted... is that ok? 2012/10/26 Thomas Ferris Nicolaisen > What the h

[git-users] how to make a 'git add --patch' using --word-diff?

2012-10-28 Thread Joe Cabezas
my project have files with very large lines (very common in latex projects), sometimes i have to modify a single word, and is very simple to see differences using git diff --word-diff but when I want to make a git add --patch show hunks like 'git diff' without --word-diff option... and is very

Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread Joe Cabezas
you can use git push : that push in your local branch into the remote branch if you want to delete a branch in , you can do this: git push :< branch_remote > it's like to say: "please, copy nothing from my local to ", and voila, deleted Bye! -Joe 2012/11/26 Willi

Re: [git-users] Re: git.for solo developer

2012-12-21 Thread Joe Cabezas
I feel really sorry about this off-topic ,but I loved this message ,thank you Charles Manning. JoeCabezas: "When my kids started programming, the 1st thing I did with them was get them to sign up to #github and get into the habit of using git" <3 Original Tweet: http://twitter.com/JoeCa

Re: [git-users] diff tool for docx files to be used in git?

2013-02-19 Thread Joe Cabezas
hello! maybe this will be usefull for you :), using git attributes and third party software to translate binary files like docx into plain text and then use git to make the diff http://git-scm.com/book/en/Customizing-Git-Git-Attributes have a nice day! :D 2013/2/19 Rainer M Krug > -BEGIN

Re: [git-users] Re: diff tool for docx files to be used in git?

2013-02-19 Thread Joe Cabezas
git... if you found something please post it here, or, if you actually create a script for this... please make it opensource on github, thank you :) 2013/2/19 Rainer M Krug > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 19/02/13 15:18, Joe Cabezas wrote: > > hello!

Re: [git-users] Re: HELP! "stash pop" is failing and I can't get my work out

2013-05-09 Thread Joe Cabezas
merge temporalbranch hope this helps bye! -Joe 2013/5/8 Yawar Amin > Hi, > > On Friday, March 8, 2013 4:06:04 PM UTC-5, Piers H wrote: > > why does git require all these gymnastics just to do a simple merge? > > with SVN it was 1 command, and I never had any is

Re: [git-users] Re: files full path in a commit.

2013-05-12 Thread Joe Cabezas
post the solution :) 2013/5/12 Gabby Romano > ignore - found it.:-) > > > On Sunday, May 12, 2013 10:52:50 PM UTC+3, Gabby Romano wrote: >> >> Hi all, >> >> does any know how to extract the full path of all files related to a >> commit ? I am writing a post receive hook which supposed to ru

Re: [git-users] proper meaning of '.' dot in a git command?

2013-05-16 Thread Joe Cabezas
all files in current directory, if that directory is the root directory (where .git folder is), basically means: "add all files modified and untracked" have fun! -Joe Cabezas 2013/5/16 John McKown > In UNIX commands, the period by itself means "the current directory&qu

Re: [git-users] Combining two branches

2013-05-18 Thread Joe Cabezas
2013/5/18 Dale R. Worley > perimenting with using Git as a backup tool (by automatically > snapshotting my home directory), I've generated a long branch which is > a series of commits that record states of my home directory. > > Actually, I've got *two* such branches. > > It would be very conveni

Re: [git-users] how to protect my source while allowing a new developer to work

2013-06-06 Thread Joe Cabezas
use any git workflow http://git-scm.com/book/en/Distributed-Git-Distributed-Workflows git is not centralized, so he cant mail you or something like that telling you to make a pull request.. (in github this is implemented very well) you have to become an integration manager 2013/6/6 Gergely Pol

Re: [git-users] Re: Humorous description of git

2013-06-17 Thread Joe Cabezas
oh god!, nice to see you have spare time philip! :D 2013/6/17 Philip Oakley > ** > *homeomorphic = a one-to-one correspondence, continuous in both > directions, between the points of two geometric figures or between two > topological spaces. So I think that means if my SHA1 equals your SHA1 we

[git-users] fatal: not a git repository

2021-11-05 Thread Joe Sollers
Trying to go thru initial course and navigating the terminal directions but we have reached a point where I get fatal: not a git repository, backed the video up and tried several ways but not able to follow along with video because I am not getting beyond this message in git status. Maybe someth

Re: [git-users] fatal: not a git repository

2021-11-05 Thread Joe Sollers
the navigation skills. I will have many more questions. I am only navigating thru tutorial which says is 6.5 hrs but may be 60 for me. On Friday, November 5, 2021 at 10:33:09 AM UTC-4 Konstantin Khomoutov wrote: > On Fri, Nov 05, 2021 at 06:34:16AM -0700, Joe Sollers wrote: > > >Tryin

Re: [git-users] fatal: not a git repository

2021-11-05 Thread Joe Sollers
https://www.udemy.com/course/github-ultimate/learn/lecture/4731836#overview On Friday, November 5, 2021 at 10:33:09 AM UTC-4 Konstantin Khomoutov wrote: > On Fri, Nov 05, 2021 at 06:34:16AM -0700, Joe Sollers wrote: > > >Trying to go thru initial course and navigating the termina

[git-users] trouble syncing terminal

2021-11-05 Thread Joe Sollers
Good Afternoon I have been following tutorial online and book as well working with 2 computers and about 8 windows open on both maybe 16 hrs but working on a project that requires coding.It seems the tutorial is in master file and I am in actual computer file. I cannot sync or proceed with what

[git-users] Re: trouble syncing terminal

2021-11-05 Thread Joe Sollers
at the two ends can be different > (which is useful) > Point to note 2. `git pull` isn't (usually) what you want. You should use > `git fetch` for the information from the remote(s), and then separately > decide what to do. If you `pull` back and forth you can get into knots. &g

[git-users] Anaconda uninstall/install

2021-11-21 Thread Joe Sollers
Trashed and emptied trash with anaconda app and file. Tried to reinstall and it has turned into a task. M1 mac can t reinstall and it sees it still in hard drive and fails install Downloaded 2 different apps to recover with no luck. This is holding up a project now, is there any other way looks li

[git-users] Newbie Needs help with using and desgning Git

2014-10-08 Thread &#x27;Joe Green' via Git for human beings
me started. Since I'm using Dreamweaver, I though about using Subversion but I'm new to Subversion and I also use Visual Studio so I don't mind trying something else that can work with both the editors. Thanks Joe Green -- You received this message because you are subscribe