Wednesday, 8 September 2021

git commands

 git commit -a -m "The Commit message"

git add .

commit all pages

git push

No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...