6

I'm forced to work with LabVIEW source code on a Windows 7 machine and am curious what might be the best setup to handle the source code in a remote Git repository.

Currently I'm handling everythin like I would with my C projects, means Git Bash and a simple .gitignore file that excludes .aliases and .lvlps files, but think that there might be some possible improvement.

Thanks for every suggestion.

terman
  • 303
  • 4
  • 12

3 Answers3

5

You could look for tips and ideas in the NI Community Group set up just for Git users.

https://decibel.ni.com/content/groups/git-user-group?view=blog

Phil Brooks
  • 643
  • 4
  • 8
1

If you have LV professional you can get diff and merge to work using

https://github.com/joerg/LabViewGitEnv

I use this together with git bash.

  • 2
    Please include some more info into your answer. How to use the program behind your link? How will it help OP to solve his problem? Simply pasting a link doesn't help future users, if the link only leads to a 404-page. – waka Nov 14 '14 at 20:36
0

Well, what answers do you expect?

If you are searching for another git client, i can recommend you TortoiseGit. Im working with Egit, but thats only for eclipse. Im sure there are a bunch of clients out there, just google it.

Other than that, Git Bash is fine. It works, why change it? Using another client won't give you any benefits other than better UI's.

functionpointer
  • 1,411
  • 1
  • 13
  • 18
  • I'm more curious about things like: how to organize a big project, what files types end up in your .gitignore, how do you merge e.g. compare revisions. Stuff like that. – terman Sep 19 '13 at 12:18