Re: [git-users] Just getting started

2023-07-15 Thread Chris Stone
t 12:13 AM Tassilo Horn wrote: > Chris Stone writes: > > Hi Chris, > > > I have always used double quotes for commit msgs. git commit -m > > "message here" I also believe that is the expected format when using > > -m > > That's not git's responsibility. -m

Re: [git-users] Just getting started

2023-07-14 Thread Chris Stone
I have always used double quotes for commit msgs. git commit -m "message here" I also believe that is the expected format when using -m On Fri, Jul 14, 2023 at 8:50 AM Tassilo Horn wrote: > David Aldrich writes: > > Hi David, > > > I am at the absolute beginning of learning git. Using git on

Re: [git-users] git pull --no-ff is not equivalent to git fetch+merge

2023-07-10 Thread Chris Stone
from https://git-scm.com/docs/git-config pull.ff By default, Git does not create an extra merge commit when merging a commit that is a descendant of the current commit. Instead, the tip of the current branch is fast-forwarded. When set to |false|, this variable tells Git to create

Re: [git-users] Need help....locked out

2022-01-02 Thread Chris Stone
an > email, but I am probably missing something. Does anyone know how to do that > on an android phone? > Thanks, > Bob > > On Sunday, January 2, 2022 at 5:02:34 PM UTC-5 Chris Stone wrote: > >> Robert would not need ssh to access the main account. That would be >> handl

Re: [git-users] Need help....locked out

2022-01-02 Thread Chris Stone
Hub > account via a web browser. My expectation was that login step did not need > ssh. > > If Robert can login to his account (Confirmation needed), then he can > update/replace his ssh keys (generate new ones). > > On Sunday, January 2, 2022 at 6:49:48 PM UTC Chris Stone wrot

Re: [git-users] Need help....locked out

2022-01-02 Thread Chris Stone
tHub support before you get doubly locked out by trying too > hard to look like someone hacking in ;-) > > On Sunday, January 2, 2022 at 5:32:04 AM UTC Chris Stone wrote: > >> Never used 2fa on GitHub. However it does make sense. I do know you'd >> have to generate a new ssh key

Re: [git-users] Need help....locked out

2022-01-02 Thread Chris Stone
efore you get doubly locked out by trying too > hard to look like someone hacking in ;-) > > On Sunday, January 2, 2022 at 5:32:04 AM UTC Chris Stone wrote: > >> Never used 2fa on GitHub. However it does make sense. I do know you'd >> have to generate a new ssh key before you ca

Re: [git-users] Need help....locked out

2022-01-01 Thread Chris Stone
Never used 2fa on GitHub. However it does make sense. I do know you'd have to generate a new ssh key before you can access your repo via ssh since you lost the old one On Sat, Jan 1, 2022, 10:02 PM robert kugler wrote: > As a newbie to git, i am having trouble getting in to my github account. >

Re: [git-users] How to save file's first commit, but ignore all further changes to this file?

2016-01-06 Thread Chris Stone
I think you could check in the "header files" as you want them to be then add the files to your .gitignore that way any changes made to those header files would not be committed to the repo. Another option I think would work which might be the better solution is to use a git hook to copy the

Re: [git-users] Strict, domain-based read/write vs. read-only access.

2016-01-06 Thread Chris Stone
Have you looking into using a dedicated server package such as gitosis or gitolite? I know github also has a version of there software available as well. Sounds like a solution similar to what is used on drupal.org might work for your needs. Any one can clone a project from drupal.org using

Re: [git-users] git - ssl problem

2014-01-13 Thread Chris Stone
Are you able to clone a read only copy of the repo? Is you ssl cert added to the github repo? Have you tried using the git daemon instead of https? Sent from my iPhone On Jan 10, 2014, at 12:34, Kevin Ston kevinston1...@outlook.de wrote: Hello, I've got a self-signed ssl-certificate,

Re: [git-users] SVN vs GIT

2012-03-08 Thread Chris Stone
Your reply may have been a joke or it may not have been. Either way I feel your post added nothing of value to the thread and is therefore a waste of bandwidth. The link you posted may be of value, however I was offended by your comments. I use both git and svn and I am neither ugly or stupid. On

Re: [git-users] SVN vs GIT

2012-03-08 Thread Chris Stone
, Chris Stone wrote: Your reply may have been a joke or it may not have been. Either way I feel your post added nothing of value to the thread and is therefore a waste of bandwidth. The link you posted may be of value, however I was offended by your comments. I use both git and svn and I am

Re: [git-users] getting changes since a specified commit

2012-01-27 Thread Chris Stone
Sounds like you want to create a patch file. Command would be git diff. I have not worked with patch files much beyond applying them. Can any one else fill in the details? On Jan 27, 2012 11:53 AM, Kevin Wilson wkev...@gmail.com wrote: Hi, I have a git tree on one site, and a copy of it (from

Re: [git-users] Remote Repositrories

2012-01-01 Thread Chris Stone
If the network drive is mounted under projects you should be able to git clone path to local repo folder name you want report cloned into if you leave the second folder out it will default to report name. Also the --bare Camden opt will not check out a working copy it will transfer the contents of

Re: [git-users] Re: Remote Repositrories

2012-01-01 Thread Chris Stone
should work, but I can work out why. I may fall back to using the network drive if there is no other advice. Cheers. N. On Jan 1, 7:45 pm, Chris Stone nightshade1...@gmail.com wrote: If the network drive is mounted under projects you should be able to git clone path to local repo folder

Re: [git-users] Why does this happen (unexpected git behaviour)

2011-11-11 Thread Chris Stone
When you modify a file after it has been added to git inless you commit the change on your current working branch when you switch branches the changes will remain. At least that is what happened when I created a test file on master, checked out a new branch, made a change to the file then switch

Re: [git-users] Git newbie not understanding branching and/or git flow

2011-10-28 Thread Chris Stone
You need to git checkout develop after you clone unless you specify the branch during clone On Oct 28, 2011 1:39 PM, John Green johngreen27...@gmail.com wrote: I'm transitioning from svn to git and I'm having a bit of a problem. I'm using git flow and I can't bring down changes I made. Here's

Re: [git-users] does git clone automatically download branch information

2011-10-25 Thread Chris Stone
Yes this is normal behavior in regards to having to use branch -r to list the remote branches. How ever you should be able to use checkout -b remotename localname and git. Should auto setup tracking. If not there's a configuration line that can be added to you. .git/config file. You can reference