How can I push individual projects using GIT and Netbeans?

  • Thread starter Thread starter toothpaste666
  • Start date Start date
AI Thread Summary
The discussion centers on a user experiencing issues with Git integration in NetBeans, specifically pushing an entire workspace to Bitbucket instead of individual projects. The user suspects that they have configured Git to commit all projects at once. Another participant suggests that this behavior may stem from setting up a single Git repository for all projects, which is supported by the NetBeans Git tutorial. They recommend creating separate repositories for each project to allow for project-specific commits and pushes. The conversation highlights the need for proper repository management in Git when using NetBeans to avoid unintended bulk commits.
toothpaste666
Messages
516
Reaction score
20
Hey everyone I am using GIT with netbeans to push projects to my bitbucket. The problem is I think I somehow accidentally set it so that it commits my entire workspace. What I mean by this is when I try to push one of my projects to one repository it pushes all of them instead of just the one I want. How can I change this? Thank you
 
Technology news on Phys.org
When using SVN, we create a tree outside of Netbeans and then open specific projects inside Netbeans. From there, we can update and commit changes using Netbeans on a project by project basis or even file by file basis.

How are you doing it with Git and Netbeans?

The GIT Netbeans tutorial seems to imply setting up a GIT repo for all your projects and hence you'd get the behavior you're seeing.

https://netbeans.org/kb/73/ide/git.html

We plan to move to GIT some time in the future so I'd like to hear more about this issue.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
What percentage of programmers have learned to touch type? Have you? Do you think it's important, not just for programming, but for more-than-casual computer users generally? ChatGPT didn't have much on it ("Research indicates that less than 20% of people can touch type fluently, with many relying on the hunt-and-peck method for typing ."). 'Hunt-and-peck method' made me smile. It added, "For programmers, touch typing is a valuable skill that can enhance speed, accuracy, and focus. While...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top