Thursday, 5 August 2021

git ignore

 to ignore build file

my file inside wwwroot of .net so in git ignore i have given filepath or ryt click on commit changes file show the option git ignore.then i taken that path but fill still getting track so i given after wwwroot/* means all files.

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...