Results 181 comments of admorgan

This just started happening to me with the update to 3.6.0. It had been working fine before that and I keep this app as up to date as possible.

I can also make this happen when I start typing a name and backspace. I have to reload the page to get any entries in the to: field after this...

This is also allows for projects to put sane defaults into the repository with the rest of the code.

Most common question. We have some slightly better error messages on the release/0.4.2. At the root you either rebased or squash merged at some time. This has caused the parent...

No, git subrepo does not have a mechanism to ignore files other than .gitignore. Therefore it would not be possible to have files committed to the S directory in R...

To change branches you would pass the -b option. For instance to pull from a different branch you would use `git subrepo pull -b new_branch lib/` If you want to...

Your use case is exactly what subrepo is designed to do. In your application root you should add the Library as a directory of your application `git subrepo clone `....

```bash git init . touch "file1" git add file1 git commit -m "Add file1" git subrepo clone [email protected]:youruser/repo lib1 touch lib1/file2 git add lib1/file2 git commit -m "Add file2 to...

In short it means that someone/something pushed a patch into test/features since the last time you did a pull. subrepo will only allow pushes if the HEAD of your parent...

I agree this would be a good enhancement.