All Questions
39 questions
0
votes
0
answers
291
views
Visual Studio's Git graph is showing the wrong operation
Visual Studio 2022's integrated Git features have always been acting strangely with my Bitbucket repository, and I've always wondered why, but it hasn't ever actually interrupted my team's workflow. ...
2
votes
1
answer
203
views
Copy files in Visual studio without git history
I noticed that whenever I duplicate a file in visual studio using copy paste, the git history of the original file is copied to the new file. How do we avoid this?
I expect the file to be considered ...
1
vote
1
answer
440
views
VS2019 BitBucket Permission denied (public key)
I'm having a curious problem where pushing/pulling my bitbucket repository using SourceTree works, but I get a permission denied error when using VS2019, .
I checked that the repository repository ...
3
votes
1
answer
6k
views
Visual Studio 2022 - Git (Bitbucket) integration, nowhere to enter password
I have created an app password within my bitbucket account to use with Visual Studio 2022, but I can't see anywhere in Visual Studio where I can set this password to replace the one it already has ...
6
votes
2
answers
2k
views
VS 2022 Bitbucket credential failed
I have a repo on Bitbucket
I just installed VS2022
I clone my repo and get Invalid credentials
BUT the operations work
I check the repo and see the commits
this is what I see in the output window
...
0
votes
1
answer
93
views
VisualStudio - how to not forget "Push" after "Commit"
I'm learning, but I have had a terrible habit of doing a "Commit" in Visual Studio (to BitBucket), and thinking I'm done, without doing the "Push". I think it's from years of just ...
1
vote
2
answers
932
views
Git stages changes that should be ignored by the .gitignore
I've made a Unity Project and want to exclude some folders. I made the .gitignore look like this:
[Ll]ibrary/
[Tt]emp/
[Oo]bj/
[Bb]uild/
[Bb]uilds/
[Ll]ogs/
[Uu]ser[Ss]ettings/
# Visual Studio cache ...
0
votes
0
answers
115
views
Issue while pushing first version of local code to bitbucket repo
I am trying to push first draft of my .Net code (written in Visual Studio) to bitbucket. Locally I am working on the master branch.
I created an empty repo in bitbucket.It is empty because i cannot ...
2
votes
0
answers
470
views
How to create Bitbucket pull request in Visual Studio 2019
I want to create a Pull Request in Visual Studio 2019 for a Bitbucket repository but I couldn't find anything for that.
I used these extensions:
Visual Studio Bitbucket
Git Web Links
DevDiary
But ...
0
votes
0
answers
38
views
Can't get latest updates
I using Git with Bitbucket - every time when I have this issues I deleted my files from local PC and copied it from bitbucket. I think it isn't good idea do it every time.
What happened: usually for ...
0
votes
0
answers
154
views
Commit notes to display changes made in code
I am using Team Explorer in Visual Studios and have linked my BitBucket account up with it and can quite happily make changes to my code and Commit/Push/Sync those up to show on the BitBucket site.
...
9
votes
3
answers
7k
views
SSH Bitbucket Clone in Visual Studio 2019 not working
Cloning a bitbucket repo using Visual Studio 2019 not working. I am able to clone using command line but not using Visual Studio 2019 Git extension.
Command Line:
start-ssh-agent.cmd
then
git ...
0
votes
0
answers
83
views
How to Cherry-Pick only Code-Changes (without Metadata e.g. Date, Message)?
I have a repository with a finished project and want to load the commits (step by step) into a new repository, with new messages and the current date. Any tips? Using VS2019 and bitbucket.
0
votes
1
answer
246
views
Visual Studio Publish GIT repository (either local or remote) to Dev server without changed files that haven't been staged/committed
Perhaps this is something that already happens by default, but I'm working on a bunch of files that haven't been staged or committed, but another fix that was made more urgently needs to be published ...
0
votes
0
answers
43
views
How to share code between two project in Visual studio
I work with one project which have a Client and Server side, for developing i use Visual studio.
So problem is, in my web page i have Header panel which are the same for Client and Server side, and ...