简体   繁体   中英

Version Control in Git - Bitbucket

I've used other version control applications before whilst developing SSIS packages yet I'm working on an API and nodejs application at present and considering using bitbucket.

I had a look at it today and created a repository and started with some files.

My question is around the application I've onboarded it has a large Visual Studio solution for the API yet I can't see how I'd get that onto bitbucket as a master. Returned 413 errors and I suspect it's due to the size about 1GB.

My understanding of version control in the past scenario was that it would take all files so the entire application can be tracked.

Might be missing something… not sure?

Have you considered using gitignore file. You can setup git to ignore some files in your repo. Usually people do not include dependencies (like node modules) or generated binaries in the repo because they can get quite large and can be easily downloaded.

You can use website like gitignore.io to generate the file for you based on the project type.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM