~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ngit/NGit/NGit.Api/Git.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
818
818
                /// a
819
819
                /// <see cref="StashCreateCommand">StashCreateCommand</see>
820
820
                /// </returns>
 
821
                /// <since>2.0</since>
821
822
                public virtual StashCreateCommand StashCreate()
822
823
                {
823
824
                        return new StashCreateCommand(repo);
828
829
                /// a
829
830
                /// <see cref="StashApplyCommand">StashApplyCommand</see>
830
831
                /// </returns>
 
832
                /// <since>2.0</since>
831
833
                public virtual StashApplyCommand StashApply()
832
834
                {
833
835
                        return new StashApplyCommand(repo);
838
840
                /// a
839
841
                /// <see cref="StashDropCommand">StashDropCommand</see>
840
842
                /// </returns>
 
843
                /// <since>2.0</since>
841
844
                public virtual StashDropCommand StashDrop()
842
845
                {
843
846
                        return new StashDropCommand(repo);
859
862
                /// <code>apply</code>
860
863
                /// command
861
864
                /// </returns>
 
865
                /// <since>2.0</since>
862
866
                public virtual ApplyCommand Apply()
863
867
                {
864
868
                        return new ApplyCommand(repo);