1 3/4 cups sugar
1/4 teaspoon salt
1 cup cake flour, sifted
12 egg whites (the closer to room temperature the better)
1/3 cup warm water
1 teaspoon orange extract, or extract of your choice
1 1/2 teaspoons cream of tartar
1 3/4 cups sugar
1/4 teaspoon salt
1 cup cake flour, sifted
12 egg whites (the closer to room temperature the better)
1/3 cup warm milk
1 teaspoon orange extract, or extract of your choice
1 1/2 teaspoons cream of tartar
1 3/4 cups sugar
1/4 teaspoon salt
1 cup cake flour, sifted
12 egg whites (the closer to room temperature the better)
1/3 cup warm water
1 teaspoon orange extract, or extract of your choice
1 1/2 teaspoons cream of tartar
1 cup Cool Whip frosting
1 3/4 cups sugar
1/4 teaspoon salt
1 cup cake flour, sifted
12 egg whites (the closer to room temperature the better)
1/3 cup warm milk
1 teaspoon orange extract, or extract of your choice
1 1/2 teaspoons cream of tartar
1 cup Cool Whip frosting
Git is famous for the ease of merging different branches
I gather merging with Git is much easier than merging with SVN. First, Git will auto-merge changes even in the same file, as long as they're not in the same area. Git would merge the above recipe changes, for instance, automatically.
First, since Git is distributed, you can commit much more frequently, even if the code isn't compiling for instance.
With SVN, you might commit them both at once, and if merging the changes with someone else's work failed, you'd be stuck.
we switched over to git at work from svn a couple months ago and i'm just now starting to understand how it works. seems to over complicate things that were much easier in svn.
the whole concept of having a local repository and a remote repository just seems pointless to me.
Git was invented to support Linux kernel development, wasn't it? That means thousands of contributors, and I can see where a central repository on the SVN model would fall apart. Somehow you have to break the effort into teams and push the responsibility out to them. So... distributed. Makes sense. But I haven't yet been convinced that it makes sense for any normal-sized project, say, 5-10 people.
i just don't see how having 2 repositories makes any sense (local and remote).
i still don't see how it would fail. with svn you can still have your own branches to work on, then when they are ready, merge them to the main one.
i just don't see how having 2 repositories makes any sense (local and remote).
git add -p (interactively select portions of modified text to commit)
git commit --amend (melt changes into previous commit)
git rebase -i (rewrite local history)
git reflog (list of SHA1's that have been at HEAD)
Some of my favorites:
Code:git add -p (interactively select portions of modified text to commit) git commit --amend (melt changes into previous commit) [b]git rebase -i (rewrite local history)[/b] git reflog (list of SHA1's that have been at HEAD)