bitbucket

How to cleanup garbage in remote git repo

不想你离开。 提交于 2019-12-17 10:44:45
问题 I recently ran into a size limit with my Bitbucket repo. I followed the countless other questions answering how to clean up your git repo and ended up using BFG to remove some bad commits. This worked great, however, I noticed that after running a git count, there was a large amount of space sitting in garbage. So I ran a simple git gc. However, that did nothing to clean up the garbage. After some digging I found the following command: git -c gc.reflogExpire=0 -c gc.reflogExpireUnreachable=0

Free GIT Server with Web GUI a la BitBucket/GitHub [closed]

我是研究僧i 提交于 2019-12-17 06:57:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . At work I am working with BitBucket. I want something like that for at home to deploy on my Linux Server. So I am looking for: Only 1 or 2 users needed. An GIT Server deployable on Linux A Fancy Web GUI to visualize branches and do other operations (creating repos, branches, merging, statistics). Well documented

How to merge code in Eclipse

余生长醉 提交于 2019-12-14 03:55:32
问题 How do I dot the following in Eclipse? I have created a Android app project in Eclipse and I have put this under version control using eGit and BitBucket (again I don't know if this is the best way to describe it as I'm new to version control). I have written some code and made several commits so far. I have invited a friend who has joined the project. Last night they changed some of the code. Today I fire up Eclipse and want to continue working on the project, but want to start from where

Git - Xcode files are scheduled for Deletion in Project Navigator 'D'

吃可爱长大的小学妹 提交于 2019-12-14 03:45:33
问题 I was implementing some feature using Core Data, when I added a xcdatamodeld file, all my Xcode's files in the project navigator become with a 'D' icon. When I deleted the xcdatamodeld file, some files change their symbol to '?'. I did some research and I found that 'D' means that the item/file is scheduled for Deletion. When I tried to see the git status using the terminal, all my project files was deleted. Someone please can help me to commit my project without losing my Xcode files ? Any

How do I tell (locally) mercurial that a server is non-publishing?

瘦欲@ 提交于 2019-12-14 03:40:04
问题 How can I tell mercurial that a remote server (on bitbucket for example) is non-publishing when I do not have access to the remote .hg/hgrc file? Background Recent versions of mercurial has a concept of phases that allow one to keep track of which changesets have been shared ( public ) and which ones have not ( draft ). Repository changing operations like rebase are allowed on draft changesets, but not public changesets as others might depend on the latter. Pushing changesets to a public

what may happen if the size of my git repo on github exceeds 1GB? [closed]

会有一股神秘感。 提交于 2019-12-14 03:33:09
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . The following is from github:help, https://help.github.com/articles/what-is-my-disk-quota: my question is what will happen if the size of repo exceeds 1GB, what may happen if I don't reduce its size? (That is i just ignore that polite email, and can I push more files to my repo if the size of my repo exceeds 1GB

Changing author/mail on specific commit/s

心不动则不痛 提交于 2019-12-14 03:30:05
问题 I have a repository on bitbucket which is aligned with the online repository (origin), while using Atlassian Sourcetree as tool for managing it. Let's say it has 20 commits. Sourcetree for some reason haves its share of fun changing project settings and I wrongly pushed 2 commits (let's say commit 15 and 16 as some other coworker which uses the machine too. I want to put my name and mail in those commits. Let's imagine the tree like this (without branches, just master) Commit number ->

Bitbucket not showing changes in themes directory

半城伤御伤魂 提交于 2019-12-14 03:25:06
问题 I'm using Sourcetree on OS X. I'm working on a WordPress project. For some reason, changes I make in the 'themes' directory are not being shown as Unstaged files. If I add a test file to /wp-admin/ or /wp-content/ it shows the test file as unstaged. I can't figure out why themes files are not being tracked. I checked .gitignore and it's empty. Any help is appreciated. Thanks! 回答1: To clarify the question. If SourceTree fails to recognize un-tracked files here are some steps you should take.

Using an ssh key with composer for a private vcs

我的梦境 提交于 2019-12-14 00:27:14
问题 I'm trying to pull a private package hosted on Bitbucket into my project but I can't seem to get composer to work correctly with my SSH key. I'm currently trying: { "type": "composer", "url": "https://packagist.org" }, { "type": "vcs", "url": "git@bitbucket.org:{projectName}/{repo}.git", "ssh2": { "username": "git", "privkey_file": "/home/vagrant/.ssh/bitbucket_id_rsa", "pubkey_file": "/home/vagrant/.ssh/bitbucket_id_rsa.pub" } }, When I try to run composer update I get Permission denied

AppHarbor build error with nuget packages

别来无恙 提交于 2019-12-13 21:24:40
问题 I'm getting a build error when deploying to AppHarbor from bitbucket. It's related to one of the projects not being able to resolve a dependency which should come from Nuget. Everything builds and runs fine on my machine. Knowledge - I am very well versed with Nuget and an experienced dev. I probably caused this by shuffling folders around locally and recreating the bitbucket repo. I've checked the bitbucket source and it seems everything is there compared to local. My solution is structured