Re: [git-users] Git for beginners

2020-09-02 Thread Mark Brown
...@gmail.com wrote: > On Fri, 28 Aug 2020 at 16:14, Mark Brown wrote: > >> >> I'm completely new to Git. >> Someone recovered a website for me and they sent me a link with a database >> >> the link looked like g...@bitbucket.org:h*s.git >&

[git-users] Git for beginners

2020-08-28 Thread Mark Brown
I'm completely new to Git. Someone recovered a website for me and they sent me a link with a database the link looked like g...@bitbucket.org:h*s.git I have no idea what to do. Please i need help. I've downloaded github -- You received this message because you are subscribed

Re: [git-users] Git for Windows and .NET?

2019-04-04 Thread Mark Waite
> etc.) is not needed. Additionally, non-critical packages such as Git-Bash, > Git-Gui, PERL, Python, and Tcl are excluded from Minimal Git for Windows to > reduce the package size. Mark Waite On Thu, Apr 4, 2019 at 2:43 PM Michael Powell wrote: > Hello, > > What's the difference, Gi

Re: [git-users] Using Jenkins, how to commit and push a code from local workspace (Windows) to Git Branch after every build executed in Jenkins

2019-03-19 Thread Mark Waite
by author or by text in the commit message. Those same techniques are not universally available in Pipeline. Mark Waite On Tue, Mar 19, 2019 at 8:16 AM Eyal Goren wrote: > You mean how to do it in pipeline? > > On Tue, Mar 19, 2019, 2:46 PM >> Hi Everybody, >> >> Using Jenkin

Re: [git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Mark Waite
Sorry, but I don't have further pointers than those links (and google searches which find things like https://developer.github.com/webhooks/#events which mentions that the create event is notified each time a branch or tag is created) Mark Waite On Sat, Apr 28, 2018 at 5:57 PM Gopichand Nakkala

Re: [git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Mark Waite
nvestigate the provider's documentation on webhooks. Most provide webhook based notification of changes. For example, https://developer.github.com/webhooks/creating/ or https://confluence.atlassian.com/bitbucket/manage-webhooks-735643732.html Mark Waite On Sat, Apr 28, 2018 at 5:02 PM Gopichand Nakk

Re: [git-users] Third way to create a bare repository?

2018-02-12 Thread Mark Waite
d the technique with large repositories that I didn't want to clone entirely from the origin after making some major mistake in the working repository. Mark Waite AFAICT, this should work (although maybe I need to completely remove the > .git > directory level and move it to the parent). >

Re: [git-users] Cache credentials in my terminal session, not for a user account

2018-02-08 Thread Mark Waite
Thanks Tim for that introduction to using ssh-agent as a wrapper for a shell command. I had never seen that technique. Very nice! Mark Waite On Thu, Feb 8, 2018 at 1:29 PM Timothy Rice <timothy.r...@unimelb.edu.au> wrote: > Oops, sorry I didn't notice Mark's response before re

Re: [git-users] Cache credentials in my terminal session, not for a user account

2018-02-08 Thread Mark Waite
//help.github.com/articles/caching-your-github-password-in-git/ for hints on "credential helpers". Mark Waite Maciej Ł. > > -- > You received this message because you are subscribed to the Google Groups > "Git for human beings" group. > To unsubscribe from th

Re: [git-users] Official documentation about repository size limits for a self hosted server

2017-12-27 Thread Mark Waite
that was over 10 GB. Performance suffered in various ways, but that was the situation and we worked with it. See https://stackoverflow.com/questions/984707/what-are-the-file-limits-in-git-number-and-size for a good summary and many links to other information sources on large git repositories. Mark

Re: [git-users] Where does git on windows store the repositories?

2017-10-26 Thread Mark Waite
If the repository is a working directory (not bare), then the repository is stored in the ".git" directory. If the repository is bare, then it is stored in the directory itself. Bare repositories typically are used on git servers, rather than on development desktops. Mark Waite On T

Re: [git-users] Git branch merge strategies

2017-07-26 Thread Mark Waite
, then isn't the ultimate simplification to merge both 1 and two to master with a single command? $ git checkout master $ git merge one two That will perform an octopus merge and create a merge which has 3 parents, rather than the more common 2 parents. Mark Waite On Wed, Jul 26, 2017 at 4:26 PM

Re: [git-users] Git branch merge strategies

2017-07-25 Thread Mark Waite
, test the resulting merge. This resolves branch one into master 4. Merge from master to branch two, test the resulting merge 5. Merge from branch two to master, test the resulting merge. This resolves branch two into master Mark Waite On Tue, Jul 25, 2017 at 6:38 AM JNickVA <manassa

Re: [git-users] Keeping Timestamps

2017-06-05 Thread Mark Waite
eckout of that file, then no, that is not done in any version of git. Refer to https://stackoverflow.com/questions/2179722/checking-out-old-file-with-original-create-modified-timestamps for more details. Mark Waite > -- > You received this message because you are subscribed to the Google Groups

[git-users] Re: staging or no staging in system files?

2017-05-05 Thread Mark Waite
ystem configuration, like puppet, chef, or ansible. Have you considered those tools for system configuration, since they are specifically designed to configure systems? Mark Waite > The problem is that Git repos are not stable; ie if you mess it up you > would mess up your system if

Re: [git-users] How to improve the Git status performance

2016-11-26 Thread Mark Waite
ry rather than a network mounted file system - Reduce the number of files in the working directory by using a sparse checkout to only checkout the files which are relevant to your work Mark Waite On Tuesday, November 22, 2016 at 10:36:29 PM UTC-7, Ravalika wrote: > > Thank you > >

Re: [git-users] Large SVN to GIT migration

2016-11-03 Thread Mark Waite
ensed, proprietary source control system which will be unavailable after the transition), but it worked well for us, and it wasn't too long before searches in the old repository dropped to almost zero. Mark Waite > Kevin > > On Thursday, November 3, 2016 at 1:18:53 AM U

[git-users] Re: using git for system configuration management

2016-10-04 Thread Mark Waite
Many Linux distributions include etckeeper. It tracks changes in the etc directory with a version control system. It can use git or others. Mark Waite -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from

Re: [git-users] git new bird: Server aborted the SSL handshake

2016-09-01 Thread Mark Waite
Since it is a public repository, you may be able to clone it with git protocol $ git clone git://github.com/schacon/simplegit-progit Mark Waite On Thursday, September 1, 2016 at 2:12:25 PM UTC-6, Konstantin Khomoutov wrote: > > On Wed, 31 Aug 2016 18:03:47 -0700 (PDT) > chenh...@

Re: [git-users] Git on 2 computers and syn

2016-06-01 Thread Mark Waite
t concerns me about git submodules. My personal preference has been more towards a single repository, with careful effort to keep large binary files out of the repository. I'm sure others will view it differently. Mark Waite > On Wed, Jun 1, 2016 at 5:00 PM, Alexandru Pătrănescu <dre

Re: [git-users] I am a newbie

2016-04-30 Thread Mark Waite
sibly help an open source project. Bug reports are at https://issues.jenkins-ci.org/issues/?filter=14040 and https://issues.jenkins-ci.org/issues/?filter=14041 Source code is at https://github.com/jenkinsci/git-client-plugin and https://github.com/jenkinsci/git-plugin Mark Waite > On 30 Ap

[git-users] Re: subdir from one big repo as subdir to anouther

2016-04-25 Thread Mark Waite
"subtree merge". Refer to https://git-scm.com/book/en/v1/Git-Tools-Subtree-Merging for the description of subtree merge, including its strengths and weaknesses. Mark Waite -- You received this message because you are subscribed to the Google Groups "Git for human beings" gr

[git-users] Git Workflow for many similar apps.

2016-04-05 Thread Mark Lonergan
I am seeking advice on setting up a git workflow for our team. We are developing native IOS and Android apps. there will be a master project (for each platform) that will contain all the all the core functionality and then a version of the master will be customized for each customer. We need

[git-users] Re: Objects randomly corrupting

2016-03-09 Thread Mark Waite
That's an older version of git. If you can't avoid doing that, then you may want to try the most recent version of git, and possibly a 64 bit version of git. Mark Waite On Wednesday, March 9, 2016 at 4:01:01 PM UTC-7, Jerome O'Connor wrote: > > Hi all. > I'm setting up a git r

Re: [git-users] Git for Windows (10)

2015-12-22 Thread Mark Allen
, Konstantin Khomoutov wrote: > On Tue, 22 Dec 2015 06:45:33 -0800 (PST) > Mark Allen <mark@intared.com > wrote: > > > Thanks for the reply. > > > > No - it's not anything being blocked. I've tried it on a fresh, clean > > install of Windows 10 (with

[git-users] Git for Windows (10)

2015-12-22 Thread Mark Allen
Hi, I just installed Git for Windows on Windows 10. If I try to open Git Bash, I get the error "Failed to fork child process: No such file or directory.". It looks like Mintty hasn't installed (despite that being an option I selected) and I suspect that the error is a result of this. I have

Re: [git-users] Git for Windows (10)

2015-12-22 Thread Mark Allen
22 Dec 2015 05:28:15 -0800 (PST) > Mark Allen <mark@intared.com > wrote: > > > I just installed Git for Windows on Windows 10. If I try to open Git > > Bash, I get the error "Failed to fork child process: No such file or > > directory.". > > &

[git-users] Git Plugin: Semantic Versioning

2015-07-24 Thread Mark Challoner
on OSX (maybe some kind user could test for me?) I hope its of some use. Regards Mark -- 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

Re: [git-users] Best practices: Derived Files

2015-01-23 Thread Mark Janssen
Hi Owen, The suggestion from Dale Worley is correct. There is a third case: 3) the derived files are difficult to derive without special knowledge or procedures. In which case, documentation is only sometimes the superior method. Mark, sf_x On Thu, Jan 22, 2015 at 1:19 AM, Gergely Polonkai

[git-users] Deleted file via rm in branch

2014-06-24 Thread Mark Bannister
Noobie here I am using Git on an ubuntu box, but I am working with Window's files on a Samba network server. I have all kinds for problems with case. The files I'm handling I have to treat as binary and the software sometimes arbitrarily changes the file name's case (old software, long

Re: [git-users] Git and Multi-Module Maven Projects

2014-03-03 Thread Mark Derricutt
likes to release from the root of the repository [1] and because of git's repository wide tagging setup ( globally tagging all modules with the version details of individual things gets quite noisy, and problematic if you need to do back-port fixes on an individual module. Mark [1] I believe

[git-users] Re: Git newbie questions

2013-12-13 Thread Mark Mikofski
you want to test build* before pushing to ghpages! - *free *web hosting - many popular themes (EG: dinky https://github.com/broccolini/dinky [2]) - *Git* - *free* repo hosting Enjoy, Mark [1] http://pages.github.com/ [2] https://github.com/broccolini/dinky [3] https

[git-users] Re: Git newbie questions

2013-12-13 Thread Mark Mikofski
://stackoverflow.com/a/19302892/1020470 On Friday, December 13, 2013 10:43:42 AM UTC-8, Mark Mikofski wrote: Github pages http://pages.github.com/ [1] is exactly what you want: - *easy!* - uses *Jekyll* - auto build with feedback on errorshttps://github.com/blog/1706-descriptive-error

Re: [git-users] Precise Definition of Repository

2013-12-11 Thread Mark Janssen
On Wed, Dec 11, 2013 at 11:26 AM, Human Being smhea...@gmail.com wrote: Is there a precise definition of repositiory? Interesting question actually. A more accurate word would be depository: a place to keep your code, since a programmer isn't necessarily re-posting it... -m -- You received

[git-users] Git Multi Server Setup

2013-06-16 Thread Mark Christian Lopez
I want to set up Git so that when I commit to BitBucket my web server automatically fetches those commits. How can I do that? -- 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

[git-users] Some questions about plumbing commands

2012-12-27 Thread Mark Green
is required first because the repo has been changed elsewhere? Thanks, Mark --

[git-users] GIT-SVN: Corrupted commits when using --preserve-empty-dirs

2012-09-04 Thread Mark Plomer
2dcb008c220f5f6fe33700c9e7deb0c8fa2b8607 (r4) Tested with git 1.7.10 (debian backports), svn 1.6.12 (debian) Greets Mark -- You received this message because you are subscribed to the Google Groups Git for human beings group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/GALnlNPLPUEJ. To post

[git-users] Re: GIT-SVN: Corrupted commits when using --preserve-empty-dirs

2012-09-04 Thread Mark Plomer
OK done ... for the Archive: http://marc.info/?l=gitm=134676432118078 -- You received this message because you are subscribed to the Google Groups Git for human beings group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/VzJqsZ_Ngc0J. To post to this

Re: [git-users] git add This file is for the blah class

2012-08-19 Thread Mark Adam
On Sun, Aug 19, 2012 at 5:24 PM, NightShade nightshade1...@gmail.comwrote: Mark, ** ** Have you looked into the notes subcommand for git? I have not personally used it myself so I’m not certain if it will work for what you want or not but it does sound like it would at least be a start

Re: [git-users] git add This file is for the blah class

2012-08-19 Thread Mark Adam
on and have established any status there So will wait... mark -- 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 email to git-users

Re: [git-users] git pull origin branch

2011-08-22 Thread Mark Liversedge
Thank you everyone. I will keep doing the same. I tried rebasing and had a few issues (merge conflicts!). Mark -- You received this message because you are subscribed to the Google Groups Git for human beings group. To view this discussion on the web visit https://groups.google.com/d/msg/git

[git-users] git pull origin branch

2011-08-21 Thread Mark Liversedge
folks commits I get a merge commit and that gets pushed up to github. I've come to the conclusion that my pull/push commands are flawed and I should do this differently. How *should* I be doing this? TIA, Mark -- You received this message because you are subscribed to the Google Groups Git

[git-users] fetch merge but ignoring some patches?

2011-07-23 Thread Mark Liversedge
Hi, I have two branches for a v2 and v3 of software. The v2 codebase is similar to v3 and when I apply to v2 I fetch into v3 and merge, fixing the differences. However, recently there have been a few 'radical' patches applied to v2 which I do not want to apply in v3, but a lot of other stuff

[git-users] Re: fetch merge but ignoring some patches?

2011-07-23 Thread Mark Liversedge
Aha! I always wondered what cherry-pick was for. Just did that and it worked nicely. I didn't want to merge and revert because I would have spent hours unpicking a huge patch only to revert it. Thanks for the tip. -- You received this message because you are subscribed to the Google Groups

Re: [git-users] Any writers out there?

2011-02-28 Thread mark (my words)
That is a cool article, thanks for posting it. I love the stash function. -- 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 email to

[git-users] #gitforwriters

2011-02-28 Thread mark (my words)
UPDATE: I've started tracking git for writers resources with the tumblr tag * gitforwriters* . Any of you with tumblr accounts and an interest are encouraged to use the tag. Sorry for the repost: I had to delete my last post because I didn't want to spew wrong info for the rest of eternity and

[git-users] git reset --hard branch

2011-02-23 Thread Mark Liversedge
Hi, If this is easy peasy then my apologies. is it possible to reset a tracking branch to its origin without affecting other local branches? i.e. $ git checkout mybranch $ git reset --hard origin mybranch ? Thanks for any help, Mark -- You received this message because you are subscribed

Re: [git-users] Recursively export files for n commits?

2011-02-08 Thread Mark (my words)
Fantastic! It works wonderfully. Thank you kindly, Mark -- 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 email to git-users+unsubscr

Re: [git-users] Any writers out there?

2011-02-08 Thread Mark (my words)
repository. I would like to allow people to browse my changes or not to alter content. All Best, Mark -- 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

Re: [git-users] Any writers out there?

2011-02-08 Thread Mark (my words)
No worries, my TW backups are in an entirely differnt directory structure from my writing—that would be a mess. Git may not be an appropriate tool, I guess that’s what I’m trying to discover. I go through an unholy number of drafts—it can be a hassle tracking down that one phrase that didn’t

Re: [git-users] Any writers out there?

2011-02-07 Thread Mark (my words)
troupe. Thanks for the wonderfully detailed and insightful comments, Mark -- 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 email to git-users

[git-users] Re: How to migrate to git from two SVN repositories?

2010-09-06 Thread Mark Kharitonov
not sure, but if you have many branches, you will have to push them also. PS: I did not try the steps myself. I have only writed the steps I would have plan to do. We have switched from SVN to git not long ago and it went very well, but we only had to do step 1, 9 and 10. On Sep 5, 3:42 am, Mark

[git-users] How to migrate to git from two SVN repositories?

2010-09-05 Thread Mark Kharitonov
Dear ladies and sirs. We use SVN as our VCS, but wish to migrate to git. All is good, but a few months ago our SVN server had a serious RAID problems (so much that it became unusable) plus at the same day no IT person was available to restore the repository from the backups. So, we have setup a

[git-users] Re: Comment commits using accents

2009-10-19 Thread Mark
... How could I fix this? -- mark --~--~-~--~~~---~--~~ 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 email

[git-users] Re: getting started

2008-09-15 Thread Mark Thalman
, but git is there and useable. http://dysinger.net/2007/12/30/installing-git-on-mac-os-x-105-leopard -- Mark On Sep 15, 2008, at 2:07 AM, Eric wrote: You'll definitely want to learn about merges *and* all that stuff before your proceed too much further. There are a lot of great tutorials out