Pat Notz

5,222
Reputation
209 views

Registered User

Name Pat Notz
Member for 1 year
Seen 2 days ago
Website
Location
Age
Dec
2
awarded  Good Answer
Dec
1
comment How do I put a vector inside of a struct in Go?
I think in place of vector.New() you now use new(vector.Vector)
Nov
28
awarded  Nice Answer
Nov
28
accepted Remotely Track the Current Branch in Git
Nov
23
answered Creating a git repo on my server
Nov
23
revised What do these Git commands do?
Fix type-o
Nov
23
comment Remotely Track the Current Branch in Git
That's the kind of thing you could do within your post-commit hook. You just need to be careful to not overwrite code that's being actively built or tested.
Nov
23
answered Remotely Track the Current Branch in Git
Nov
23
answered Remotely Track the Current Branch in Git
Nov
19
accepted Git squash all commits into a single commit
Nov
16
answered [git] ‘git pull origin mybranch’ leaves local mybranch N commits ahead of origin. Why?
Nov
14
comment Synchronizing Git repos across machines without push
You're close. You want merge = refs/heads/master in the configuration for the master branch. Or, use 'git pull machine2 master'
Nov
14
revised Synchronizing Git repos across machines without push
Add link to git-pull documentation
Nov
11
awarded  Great Answer
Nov
11
comment git hooks and how they work
+1 Hooks are not version controlled and are not shared between repositories. Mainly this is for security reasons -- it's one thing to let someone push code into your repo, it's another to let them run code on your sever. Also, it often doesn't make sense for everyone to have the same hooks -- platforms may be different, paths may be different, the servers may have different purposes (staging, CI, deployment, QA, etc.).
Nov
9
answered Git Hook: Take action when a branch is advanced
Nov
9
answered Git checkout remote branch on unborn local branch
Nov
7
answered How to switch branches with git and get ignored files removed?
Nov
4
awarded  Popular Question
Nov
2
answered How to make a git repository read-only?
Nov
1
answered Git squash all commits into a single commit
Oct
31
answered Search git history for a change in a merge commit
Oct
26
awarded  Necromancer
Oct
23
comment Resources for high performance computing in C++
Thanks Tom. Hopefully the DDJ article is helpful.
Oct
23
revised Resources for high performance computing in C++
Add alternate link for Expresion Templates
Oct
23
revised Resources for high performance computing in C++
correct typeos
Oct
23
accepted Eclipse C++ pretty printing?
Oct
15
answered Preserve git remotes.
Oct
14
revised Actually pulling with git
Add justification for git's behavior -- conflict resolution; added 1 characters in body
Oct
9
accepted Git: Find deleted code
Oct
6
answered Git: Find deleted code
Sep
30
answered Is there a graphical test runner for “Google Test” ( gtest ) for windows?
Sep
30
revised Nested std::maps
Edit code formatting
Sep
28
answered Which Git commit stats are easy to pull
Sep
14
comment How to mirror one one git remote to another with push
Ahh, I see now. Sorry for the dead end.
Sep
13
answered Can you share a file and it’s history between two git repositories?
Sep
11
revised Git merge confusion. Diff shows differences, and merge says there are none
typeo
Sep
11
accepted Git merge confusion. Diff shows differences, and merge says there are none
Sep
10
revised Git checkout-and-merge without touching working tree
Add the reset --hard tip
Sep
10
answered Git merge confusion. Diff shows differences, and merge says there are none
Sep
8
answered How to mirror one one git remote to another with push
Sep
8
accepted git says everything-up-to-date when pushing changes to a remote branch
Sep
8
answered git says everything-up-to-date when pushing changes to a remote branch
Aug
26
answered Where can I find a tutorial on Git’s internals?
Aug
18
comment After apparently successful git push, the file are not on the target
From the link: "A quick rule of thumb is to never push into a repository that has a work tree attached to it, until you know what you are doing."
Aug
18
answered How does one clone a git repository with only a non-master branch?
Aug
17
comment git: how do I merge between branches while keeping some changesets exclusive to one branch?
Sounds like the real answer is to fix the code. Extract the hard coded paths into a config file which can be overridden with a local config file. Track a default config file but not the local config file or something along those lines.
Aug
17
answered git: how do I merge between branches while keeping some changesets exclusive to one branch?
Aug
17
answered git find fat commit
Aug
17
comment git find fat commit
The --log-size option only tells you how big the log message is -- not the size of files committed.